如何获取克隆的惰性枚举器的大小
How to get size of cloned lazy enumerator
我们有一个 Enumerator::Lazy 对象
a = [1,2,3].lazy.map {} #=> <Enumerator::Lazy: #<Enumerator::Lazy: [1, 2, 3]>:map>
a.size #=> 3
a.clone.size #=> nil
有人对这种行为有正确的解释吗?我知道枚举数的 size
returns 大小,如果不能延迟计算则为 nil。
当我们克隆对象时 returns
a.clone #=> <Enumerator::Lazy:<Enumerator::Generator:0x00007fdaa80218d8>:each>
I know that size returns size of the enumerator, or nil if it can’t be calculated lazily.
size
对于 Enumerator
不一定是真实的东西(或者至少不是人们认为的那样),这可能是实施此更改的原因。
例如
[1,2,3].to_enum.size
#=> nil
[1,2,3].to_enum(:each) { 1 }.size #=> 1
#=> 1
或更好
[1,2,3].to_enum(:each) { "A" }.size
#=> "A"
When we clone object it returns
a.clone #=> <Enumerator::Lazy<Enumerator::Generator:0x00007fdaa80218d8>:each>
这似乎是 2.4 中的一个更改,它似乎恢复到 :each 方法(可能通过 enum_for
),因为在 2.3 中,对 map
的引用保留为尺寸。显然由于回归没有发生迭代并且无法以 "lazy" 方式确定大小,因此 nil
我们有一个 Enumerator::Lazy 对象
a = [1,2,3].lazy.map {} #=> <Enumerator::Lazy: #<Enumerator::Lazy: [1, 2, 3]>:map>
a.size #=> 3
a.clone.size #=> nil
有人对这种行为有正确的解释吗?我知道枚举数的 size
returns 大小,如果不能延迟计算则为 nil。
当我们克隆对象时 returns
a.clone #=> <Enumerator::Lazy:<Enumerator::Generator:0x00007fdaa80218d8>:each>
I know that size returns size of the enumerator, or nil if it can’t be calculated lazily.
size
对于 Enumerator
不一定是真实的东西(或者至少不是人们认为的那样),这可能是实施此更改的原因。
例如
[1,2,3].to_enum.size
#=> nil
[1,2,3].to_enum(:each) { 1 }.size #=> 1
#=> 1
或更好
[1,2,3].to_enum(:each) { "A" }.size
#=> "A"
When we clone object it returns
a.clone #=> <Enumerator::Lazy<Enumerator::Generator:0x00007fdaa80218d8>:each>
这似乎是 2.4 中的一个更改,它似乎恢复到 :each 方法(可能通过 enum_for
),因为在 2.3 中,对 map
的引用保留为尺寸。显然由于回归没有发生迭代并且无法以 "lazy" 方式确定大小,因此 nil