Last active
December 29, 2015 05:49
-
-
Save brikis98/7624958 to your computer and use it in GitHub Desktop.
Enumeratees and operators
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val e1: Enumeratee[String, String] = ... | |
val e2: Enumeratee[String, String] = ... | |
val e3: Enumeratee[String, String] = ... | |
val iteratee: Iteratee[String, String] = ... | |
// Compose the 3 Enumeratees together and apply the result to | |
// the Iteratee to get a new Iteratee | |
val filteredIteratee = e1 ><> e2 ><> e3 &> iteratee |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment