mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enumerator.c: Support for lazy.take.size
[Feature #6636] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37523 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5dbbfc3b34
commit
9aafa954aa
2 changed files with 15 additions and 1 deletions
|
@ -336,5 +336,10 @@ EOS
|
|||
assert_equal nil, lazy.send(m){}.size
|
||||
end
|
||||
assert_equal nil, lazy.grep(//).size
|
||||
|
||||
assert_equal 2, lazy.take(2).size
|
||||
assert_equal 3, lazy.take(4).size
|
||||
assert_equal 4, loop.lazy.take(4).size
|
||||
assert_equal nil, lazy.select{}.take(4).size
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue