在Ruby中构建自定义的惰性枚举器,可以像这样利用Enumerator
:
enum = Enumerator.new do |e|
e << value = ".a"
loop { e << value = value.next }
end
enum.next # => ".a"
enum.next # => ".b"
enum.next # => ".c"
enum.rewind
enum.next # => ".a"
Crystal模仿此类事物的惯用方式是什么?
答案 0 :(得分:4)
有点冗长...看Iterator<T>
class DotChar
include Iterator(String)
@current : String = ""
def initialize
@start = ".a"
rewind
end
def next
@current.tap { @current = @current.succ }
end
def rewind
@current = @start
end
end
e = DotChar.new
p e.next # => ".a"
p e.next # => ".b"
p e.next # => ".c"
e.rewind
p e.next # => ".a"
(不能使用enum
作为标识符,因为那是Crystal中的关键字。)
如果您放弃倒带,则可以更简单地完成此操作:
s = ".a"
e = Iterator.of { s.tap { s = s.succ } }
将来可能有一种完全与Ruby相同的方法,但是这项工作仍在进行中(我希望尚未被放弃,它似乎已在半年前停滞了)。有关更多信息,请参见this issue和this pull request。