Skip to content

IBM-Swift/Pipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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