Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 414 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 414 Bytes

Pipes

Provides basic piping operators that allow programs to be represented using dataflow oriented programming style.

Usage

Instead of:

send(compress(getImage()))

you want to write:

getImage() |> compress |> send 

Book Example

This example is used in the following O'Reilly Book:

Extending Swift Value(s) to the Server