Transducers.jl icon indicating copy to clipboard operation
Transducers.jl copied to clipboard

`SplitBy` error

Open ParadaCarleton opened this issue 2 years ago • 0 comments
trafficstars

julia> str = "Hello\$ World\$"
"Hello\$ World\$"

julia> str = str |> SplitBy(==('$')) |> Partition(2) |> collect |> first
ERROR: MethodError: no method matching unwrap(::Transducers.Reduction{Partition, Transducers.Reduction{Map{Type{BangBang.NoBang.SingletonVector}}, Transducers.BottomRF{Transducers.AdHocRF{typeof(BangBang.collector), typeof(identity), typeof(append!!), typeof(identity), typeof(identity), Nothing}}}}, ::Tuple{Int64, Int64})

ParadaCarleton avatar Oct 01 '23 16:10 ParadaCarleton