-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the return type of Enumerable#sum
for union elements
#15308
Conversation
While checking this PR, I noticed that the The method has an "optimized path" for a sum of strings, but it wouldn't even compile without that optimization because it would otherwise try to call The docs should be updated to mention that the method won't work with specific types. Also, I don't think the best way of removing |
David, thanks for the input! I agree the doc should be updated. How about updating the document about
As for |
Let's discuss further improving the documentation of With regards to warning vs. error, I think we usually prefer the latter because warnings tend to be overlooked anyways. The justification for such a breaking change would that the current behaviour is quite unexpected and can lead to weird subtle bugs. E.g. the behaviour may change depending on the addition or removal of types from the union, even when the actual values are identical: ([12345678_u32] of UInt8 | UInt32).sum # => 12345678
([12345678_u32] of UInt16 | UInt32).sum # OverflowError: Arithmethc overflow So I believe it could be acceptable to release this change in a minor release. It might even still go into 1.15, though we should take some time to check if there are any significant consequences in the ecosystem that we may not be aware of. |
src/enumerable.cr
Outdated
raise("Enumerable#sum() does support Union types. Instead, " + | ||
"use Enumerable#sum(initial) with an initial value of " + | ||
"the expected type of the sum call.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue: Reflect#first
is used for Enumerable#product
as well as #sum
(this is mentioned in the issue). So the error message should reflect that. And we should have a spec for #product
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Done :)
spec/std/enumerable_spec.cr
Outdated
it { [1, 3_u64].sum(0_i32).should eq(4_u32) } | ||
it { [1, 3].sum(0_u64).should eq(4_u64) } | ||
it { [1, 10000000000_u64].sum(0_u64).should eq(10000000001) } | ||
it "raises if union types are summed" do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specs that take a long time (e.g. run the compiler) should be marked as slow
:
it "raises if union types are summed" do | |
it "raises if union types are summed", tags: %w[slow] do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
Enumerable#sum
for union elements
I messed up my local repo while syncing it with recent upstream changes. When I tried to clean it up, I incidentally closed this PR :-/ I have addressed all of the comments in this PR thread and created a new PR; #15314. Please review it. Apologies for any inconvenience. |
For future reference, try to avoid force pushing as per https://github.com/crystal-lang/crystal/blob/master/CONTRIBUTING.md#making-good-pull-requests. |
Fixes #15269
Using the first type of a union type as the type of the result of
Enumerable#sum()
call can cause runtime failures, e.g.[1, 10000000000_u64].sum
will result in anOverflowError
. A safer alternative is to flag/disallows the use of union types withEnumerable#sum()
and suggest the use ofEnumerable#sum(initial)
with an initial value of the expected type of thesum
call.