Class: Prime::PseudoPrimeGenerator
- Inherits:
-
Object
- Object
- Prime::PseudoPrimeGenerator
- Includes:
- Enumerable
- Defined in:
- lib/prime.rb
Overview
An abstract class for enumerating pseudo-prime numbers.
Concrete subclasses should override succ, next, rewind.
Direct Known Subclasses
Instance Method Summary collapse
-
#each ⇒ Object
Iterates the given block for each prime number.
-
#initialize(ubound = nil) ⇒ PseudoPrimeGenerator
constructor
A new instance of PseudoPrimeGenerator.
-
#next ⇒ Object
alias of
succ
. -
#rewind ⇒ Object
Rewinds the internal position for enumeration.
- #size ⇒ Object
-
#succ ⇒ Object
returns the next pseudo-prime number, and move the internal position forward.
- #upper_bound ⇒ Object
- #upper_bound=(ubound) ⇒ Object
-
#with_index(offset = 0) ⇒ Object
see
Enumerator
#with_index. -
#with_object(obj) ⇒ Object
see
Enumerator
#with_object.
Constructor Details
#initialize(ubound = nil) ⇒ PseudoPrimeGenerator
Returns a new instance of PseudoPrimeGenerator.
233 234 235 |
# File 'lib/prime.rb', line 233 def initialize(ubound = nil) @ubound = ubound end |
Instance Method Details
#each ⇒ Object
Iterates the given block for each prime number.
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
# File 'lib/prime.rb', line 265 def each return self.dup unless block_given? if @ubound last_value = nil loop do prime = succ break last_value if prime > @ubound last_value = yield prime end else loop do yield succ end end end |
#next ⇒ Object
alias of succ
.
253 254 255 |
# File 'lib/prime.rb', line 253 def next raise NotImplementedError, "need to define `next'" end |
#rewind ⇒ Object
Rewinds the internal position for enumeration.
See Enumerator
#rewind.
260 261 262 |
# File 'lib/prime.rb', line 260 def rewind raise NotImplementedError, "need to define `rewind'" end |
#size ⇒ Object
300 301 302 |
# File 'lib/prime.rb', line 300 def size Float::INFINITY end |
#succ ⇒ Object
returns the next pseudo-prime number, and move the internal position forward.
PseudoPrimeGenerator
#succ raises NotImplementedError
.
248 249 250 |
# File 'lib/prime.rb', line 248 def succ raise NotImplementedError, "need to define `succ'" end |
#upper_bound ⇒ Object
240 241 242 |
# File 'lib/prime.rb', line 240 def upper_bound @ubound end |
#upper_bound=(ubound) ⇒ Object
237 238 239 |
# File 'lib/prime.rb', line 237 def upper_bound=(ubound) @ubound = ubound end |
#with_index(offset = 0) ⇒ Object
see Enumerator
#with_index.
282 283 284 285 286 287 288 289 290 |
# File 'lib/prime.rb', line 282 def with_index(offset = 0) return enum_for(:with_index, offset) { Float::INFINITY } unless block_given? return each_with_index(&proc) if offset == 0 each do |prime| yield prime, offset offset += 1 end end |
#with_object(obj) ⇒ Object
see Enumerator
#with_object.
293 294 295 296 297 298 |
# File 'lib/prime.rb', line 293 def with_object(obj) return enum_for(:with_object, obj) { Float::INFINITY } unless block_given? each do |prime| yield prime, obj end end |