JuliaFolds / Transducers.jl

Efficient transducers for Julia
https://juliafolds.github.io/Transducers.jl/dev/
MIT License
433 stars 24 forks source link

`Reduction` falls back on `===` inappropriately #540

Closed MasonProtter closed 1 year ago

MasonProtter commented 1 year ago
julia> using Transducers: GetIndex, Reduction

julia> GetIndex([0]) == GetIndex([0])
true

julia> Reduction(GetIndex([0]), +) == Reduction(GetIndex([0]), +)
false