You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The %/== version is 7.02x as fast as %% version. I imagine the reason is %% is missing a native candidate.
<Zoffix_> m: my int $x = 42; my $ = ($x % 2 == 0) for ^10_000_000; say now - ENTER now
<camelia> rakudo-moar 4bf55b1ef: OUTPUT: «0.70281471»
<Zoffix_> m: my int $x = 42; my $ = ($x %% 2) for ^10_000_000; say now - ENTER now
<camelia> rakudo-moar 4bf55b1ef: OUTPUT: «4.9368135»
2018.09 zoffix@VirtualBox~$ perl6 -e '.signature.say for &infix:<%%>.candidates'
()
($)
(Int:D \a, Int:D \b)
(\a, \b)
2018.09 zoffix@VirtualBox~$ perl6 -e '.signature.say for &infix:<%>.candidates'
()
($x)
(\a, \b)
(Real \a, Real \b)
(Int:D \a, Int:D \b --> Int:D)
(int $a, int $b --> int)
(Num:D \a, Num:D \b)
(num $a, num $b --> num)
(Rational:D \a, Int:D \b)
(Int:D \a, Rational:D \b)
(Rational:D \a, Rational:D \b)
(Duration:D $a, Real $b)
2018.09 zoffix@VirtualBox~$ perl6 -v
This is Rakudo version 2018.09 built on MoarVM version 2018.09
implementing Perl 6.c.
The text was updated successfully, but these errors were encountered:
The
%/==version is 7.02x as fast as%%version. I imagine the reason is%%is missing a native candidate.The text was updated successfully, but these errors were encountered: