-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Closed
Milestone
Description
The generic max(itr) calls max on pairs of values, while max(Array) calls > on pairs of values. This is a problem because max(A::Array,B::Array) is elementwise, while all other definitions of max(A,B) return either A or B depending which is "larger".
At the very least, all 1-argument max definitions should be consistent on whether they do reduce(max, ...) or call >.
Then we are just left with the elementwise behavior, which may be a fight for another day.
Metadata
Metadata
Assignees
Labels
No labels