Created
October 20, 2015 10:00
-
-
Save palladin/6c5bb125160984ca67e8 to your computer and use it in GitHub Desktop.
CloudFlow.partition
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
let partition : CloudFlow<'T> -> ('T -> bool) -> (CloudFlow<'T> * CloudFlow<'T>) = fun flow f -> | |
(flow |> CloudFlow.filter f), (flow |> CloudFlow.filter (fun x -> not (f x))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment