Skip to content

Instantly share code, notes, and snippets.

@sdether
sdether / gist:ba2810107b191a390971
Created June 12, 2015 22:07 — forked from oscarrenalias/gist:3914875
Play Enumerator, Iterator cheatsheet
// --- cheat sheet ---
//
// Enumerator &> -> filters the output of the enumerator through an Enumeratee
// Enumerator >>> -> alias for andThen; adds the output of the second enumerator after the first one is done
// Enumerator |>> -> feeds the output of the enumerator into the given iteratee for processing
// --- end of cheat sheet ---
// Example
// Iteratee that sums up the size of the input: