You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>using Transducers, Test
julia> x =randn(10);
julia> iter = x |>Map(identity);
julia>@inferredcollect(iter);
julia>@inferredtcollect(iter);
ERROR:return type Vector{Float64} does not match inferred return type Any
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] top-level scope
@ REPL[20]:1
julia>@inferreddcollect(iter);
ERROR:return type Vector{Float64} does not match inferred return type Any
Stacktrace:
[1] error(s::String)
@ Base ./error.jl:33
[2] top-level scope
@ REPL[21]:1
Is there a way to make them inferrable?
The text was updated successfully, but these errors were encountered:
Is there a way to make them inferrable?
The text was updated successfully, but these errors were encountered: