diff --git a/dev/containers/CCResult/index.html b/dev/containers/CCResult/index.html index e0704afa..923f112e 100644 --- a/dev/containers/CCResult/index.html +++ b/dev/containers/CCResult/index.html @@ -14,4 +14,4 @@ ( 'b -> 'a -> ( 'b, 'err ) t ) -> 'b -> 'a iter -> - ( 'b, 'err ) t
choose l selects a member of l that is a Ok _ value, or returns Error l otherwise, where l is the list of errors.
retry n f calls f at most n times, returning the first result of f () that doesn't fail. If f fails n times, retry n f fails with the list of successive errors.
module type MONAD = sig ... endval to_opt : ( 'a, _ ) t -> 'a optionConvert a result to an option.
val of_opt : 'a option -> ( 'a, string ) tConvert an option to a result.
val to_seq : ( 'a, _ ) t -> 'a Stdlib.Seq.tRenamed from to_std_seq since 3.0.