Commit cff54ab2 authored by Kenji Okimoto's avatar Kenji Okimoto

Change return value of Enumerable#each_slice

More compatibility to CRuby.
parent 666787be
......@@ -154,6 +154,7 @@ module Enumerable
end
end
block.call(ary) unless ary.empty?
nil
end
##
......
......@@ -31,8 +31,9 @@ end
assert("Enumerable#each_slice") do
a = []
(1..10).each_slice(3){|e| a << e}
b = (1..10).each_slice(3){|e| a << e}
assert_equal [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10]], a
assert_equal nil, b
end
assert("Enumerable#group_by") do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment