|> followed by .|> Gives an error
@pipe 2 |> _ .+ (1:3) #Works
@pipe 2 .+ (1:3) .|> _^2 #Works
@pipe 2 |> _ .+ (1:3) .|> _^2 #Gives Error
Is there a way around this?
It works the other way round: .|> followed by |>
Example
@pipe (1:3) .|> _^2 |> sum #Works