Skip to content

IBM-Swift/Pipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

27564c8 · Nov 30, 2016

History

7 Commits
Sep 30, 2016
Sep 30, 2016
Jul 22, 2016
Sep 30, 2016
Jul 22, 2016
Jul 22, 2016
Nov 30, 2016

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