Utils.Option_utils
Helper functions for Options
Option
val or_else : (unit -> 'a) -> 'a option -> 'a
Similar to Option.value, but with a thunk for the default value
Option.value
val coalesce : 'a option -> 'a option -> 'a option
Returns the first option if it's Some, otherwise the second option
Some
val all : 'a option list -> 'a list option