diff options
Diffstat (limited to 'lib/option.mli')
-rw-r--r-- | lib/option.mli | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/option.mli b/lib/option.mli index a336c895c..f06ad9f1d 100644 --- a/lib/option.mli +++ b/lib/option.mli @@ -122,6 +122,9 @@ module List : sig [Some y] (in the same order). *) val flatten : 'a option list -> 'a list + (** [List.find f l] is the first [f a] different from [None], + scrolling through elements [a] of [l] in left-to-right order; + it is [None] if no such element exists. *) val find : ('a -> 'b option) -> 'a list -> 'b option (** [List.map f [a1;...;an]] is the list [Some [b1;...;bn]] if |