class Prime::PseudoPrimeGenerator

一个用于枚举伪素数的抽象类。

具体的子类应该重写 succ、next 和 rewind 方法。

公共类方法

new(ubound = nil) 点击切换源代码
# File prime-0.1.3/lib/prime.rb, line 335
def initialize(ubound = nil)
  @ubound = ubound
end

公共实例方法

each() { |prime| ... } 点击切换源代码

为每个素数迭代给定的块。

# File prime-0.1.3/lib/prime.rb, line 367
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() 点击切换源代码

succ 的别名。

# File prime-0.1.3/lib/prime.rb, line 355
def next
  raise NotImplementedError, "need to define `next'"
end
rewind() 点击切换源代码

重置内部枚举位置。

参见 Enumerator#rewind。

# File prime-0.1.3/lib/prime.rb, line 362
def rewind
  raise NotImplementedError, "need to define `rewind'"
end
size() 点击切换源代码
# File prime-0.1.3/lib/prime.rb, line 402
def size
  Float::INFINITY
end
succ() 点击切换源代码

返回下一个伪素数,并将内部位置向前移动。

PseudoPrimeGenerator#succ 抛出 NotImplementedError 异常。

# File prime-0.1.3/lib/prime.rb, line 350
def succ
  raise NotImplementedError, "need to define `succ'"
end
upper_bound() 点击切换源代码
# File prime-0.1.3/lib/prime.rb, line 342
def upper_bound
  @ubound
end
upper_bound=(ubound) 点击切换源代码
# File prime-0.1.3/lib/prime.rb, line 339
def upper_bound=(ubound)
  @ubound = ubound
end
with_index(offset = 0) { |prime, offset| ... } 点击切换源代码

参见 Enumerator#with_index。

# File prime-0.1.3/lib/prime.rb, line 384
def with_index(offset = 0, &block)
  return enum_for(:with_index, offset) { Float::INFINITY } unless block
  return each_with_index(&block) if offset == 0

  each do |prime|
    yield prime, offset
    offset += 1
  end
end
with_object(obj) { |prime, obj| ... } 点击切换源代码

参见 Enumerator#with_object。

# File prime-0.1.3/lib/prime.rb, line 395
def with_object(obj)
  return enum_for(:with_object, obj) { Float::INFINITY } unless block_given?
  each do |prime|
    yield prime, obj
  end
end