ActionsLike0
Bug #21008
closedArray#sum, Enumerator#sum, Numeric subclass
Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 3.5.0dev (2025-01-06T17:07:57Z master a61c16ba42) +PRISM [x86_64-linux]
Description
The following code seems to show a bug or 'quirk'. When using a Numeric subclass, Array#sum
works correctly, but Enumerator#sum
does not. They both work fine when using a Float
.
class Length < Numeric
def initialize(val)
@val = Float(val)
end
def to_f
@val
end
end
ary = []
#────────────────────────────────────────── Use Length
ary[0] = Length.new 5
ary[1] = Length.new 10
ary[2] = Length.new 20
puts "Length ary #{ary.sum}" #=> 35.0
enum = ary.each
puts "Length enum #{enum.sum}" #=> 20.0
#────────────────────────────────────────── Use Float
ary[0] = 5.0
ary[1] = 10.0
ary[2] = 20.0
puts "Float ary #{ary.sum}" #=> 35.0
enum = ary.each
puts "Float enum #{enum.sum}" #=> 35.0
Updated by nobu (Nobuyoshi Nakada) 4 months ago
- Backport changed from 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN, 3.4: UNKNOWN to 3.1: REQUIRED, 3.2: REQUIRED, 3.3: REQUIRED, 3.4: REQUIRED
Updated by nagachika (Tomoyuki Chikanaga) 4 months ago
- Backport changed from 3.1: REQUIRED, 3.2: REQUIRED, 3.3: REQUIRED, 3.4: REQUIRED to 3.1: REQUIRED, 3.2: DONE, 3.3: REQUIRED, 3.4: REQUIRED
Updated by k0kubun (Takashi Kokubun) 4 months ago
- Backport changed from 3.1: REQUIRED, 3.2: DONE, 3.3: REQUIRED, 3.4: REQUIRED to 3.1: REQUIRED, 3.2: DONE, 3.3: DONE, 3.4: REQUIRED
Updated by k0kubun (Takashi Kokubun) 3 months ago
- Backport changed from 3.1: REQUIRED, 3.2: DONE, 3.3: DONE, 3.4: REQUIRED to 3.1: REQUIRED, 3.2: DONE, 3.3: DONE, 3.4: DONE
ActionsLike0