Skip to content

Instantly share code, notes, and snippets.

@Luiz-Monad
Last active May 30, 2019 14:21
Show Gist options
  • Save Luiz-Monad/b21b63bd22db53d6b1a3395537b2d17d to your computer and use it in GitHub Desktop.
Save Luiz-Monad/b21b63bd22db53d6b1a3395537b2d17d to your computer and use it in GitHub Desktop.
monads.fs
// val whenSome: ('b -> 'c) -> 'b option list -> 'c list
let whenSome f = List.collect ( Option.map ( f >> List.singleton ) >> Option.defaultValue [] )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment