Actions
Bug #6473
closedEnumerable#count
Description
=begin
Enumerable#count には、
Returns the number of items in enum if it responds to a #size call,
otherwise the items are counted through enumeration. If an argument is
というコメントが書いてありますが、実際には
class E
include Enumerable
def each
end
def size
1
end
end
e = E.new
e.size # => 1
e.count # => 0
size は呼ばれていないようです。1.8 系や 1.9.1 の頃は 0 ではなく 1 が返っていたようです。
=end
Files
Actions
Like0
Like0Like0Like0