In Int§
See primary documentation in context for routine is-prime
multi is-prime (Int --> Bool)multi method is-prime (Int: --> Bool)
Returns True
if this Int
is known to be a prime, or is likely to be a prime based on a probabilistic Miller-Rabin test.
Returns False
if this Int
is known not to be a prime.
say 2.is-prime; # OUTPUT: «True»say is-prime(9); # OUTPUT: «False»