Let me clarify. One of the motivating examples in ...
# language-proposals
e
Let me clarify. One of the motivating examples in Swift proposal is this:
Copy code
let myValue: Int = 66
let myNewValue: Int = square(increment(myValue))
which they want to be able to write like this:
Copy code
let myValue: Int = 66
let myNewValue: Int = myValue
                |> increment
                |> square