Provides basic piping operators that allow programs to be represented using dataflow oriented programming style.
Instead of:
send(compress(getImage()))
you want to write:
getImage() |> compress |> send
This example is used in the following O'Reilly Book: