Beton
Beton copied to clipboard
Command Piping
So, F# has this awesome syntax of
doThis
|> doThat
|> thenThat
|> finallyThat
I've always wanted to have something like this in Swift.
Now finally there is a use case for it (besides it being cool): Operations, CI, that kind of stuff, when you pipe commands into commands into commands!
Similar to our invertible library in TS.