Skip to content

Instantly share code, notes, and snippets.

@Gbury
Last active February 4, 2019 15:43
Show Gist options
  • Save Gbury/5dfc1699f032aead4750238db7c823a6 to your computer and use it in GitHub Desktop.
Save Gbury/5dfc1699f032aead4750238db7c823a6 to your computer and use it in GitHub Desktop.
let rec flat_map_rec f s =
Seq.flat_map (fun x ->
match f x with
| `Ok -> Seq.return x
| `Seq s' -> flat_map_rec f s'
) s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment