Is piping parameter into line is working only for functions that accept one parameter? If we look at the example at Chris Smiths\' page,
// Using the Pipe-
It may be bad style (?), but you can add additional parameters to the pipeline 'from the right side'
let h x y z = x + y - z let sub x y = x - y let sqr x = x * x 3 |> h <| 2 <| 7 |> sub <| 23 |> sqr // is the same as sqr (sub (h 3 2 7) 23)