Object
Iterates the given block over all prime numbers.
See Prime#each for more details.
# File prime.rb, line 40
def Integer.each_prime(ubound, &block) # :yields: prime
Prime.each(ubound, &block)
end
Re-composes a prime factorization and returns the product.
See Prime#int_from_prime_division for more details.
# File prime.rb, line 21
def Integer.from_prime_division(pd)
Prime.int_from_prime_division(pd)
end
Returns true if self is a prime number, false for a composite.
# File prime.rb, line 33
def prime?
Prime.prime?(self)
end
Returns the factorization of self.
See Prime#prime_division for more details.
# File prime.rb, line 28
def prime_division(generator = Prime::Generator23.new)
Prime.prime_division(self, generator)
end
Commenting is here to help enhance the documentation. For example, sample code, or clarification of the documentation.
If you are posting code samples in your comments, please wrap them in "<pre><code class="ruby" > ... </code></pre>" markup in order to get syntax highlighting.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file a bug report so that it can be corrected for the next release. Thank you.