JuliaFolds / Transducers.jl

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

`foldxt` type unstable? #569

Open atbug opened 7 months ago

atbug commented 7 months ago
const grid = [[i, j] for i in -4:4, j in -4:4]

foldxt(+, Map(i -> grid[i]), 1:length(grid))

seems to be type unstable, while foldl works well.