Class: Prime::EratosthenesSieve (Ruby 2.3.4) Home Core 2.3.4 Std-lib 2.3.4 Downloads Home Classes Methods In Files prime.rb Parent Object Methods ::new #get_nth_prime Included Modules Singleton Class/Module Index Quicksearch Integer Prime Prime::EratosthenesGenerator Prime::EratosthenesSieve Prime::Generator23 Prime::PseudoPrimeGenerator Prime::TrialDivision Prime::TrialDivisionGenerator No matching classes. Prime::EratosthenesSieve Internal use. An implementation of eratosthenes’ sieve Public Class Methods new() # File prime.rb, line 425 def initialize @primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101] # @max_checked must be an even number @max_checked = @primes.last + 1 end Public Instance Methods get_nth_prime(n) # File prime.rb, line 431 def get_nth_prime(n) compute_primes while @primes.size <= n @primes[n] end This page was generated for Ruby 2.3.4 Ruby-doc.org is a service of James Britt and Neurogami, a software development company in Scottsdale, AZ. Generated with Ruby-doc Rdoc Generator 0.36.0.