Equality on resultstd/core/types/result: (V, V) -> V values.
Convert a resultstd/core/types/result: (V, V) -> V to its Okstd/core/types/Ok: forall<a,b> (value : a) -> result<a,b> value by providing a default value in the case of an Errorstd/core/types/Error: forall<a,b> (error : b) -> result<a,b>.
Convert a resultstd/core/types/result: (V, V) -> V to an eiter type using Leftstd/core/types/Left: forall<a,b> (left : a) -> either<a,b> for the Errorstd/core/types/Error: forall<a,b> (error : b) -> result<a,b> constructor
and using Rightstd/core/types/Right: forall<a,b> (right : b) -> either<a,b> for the Okstd/core/types/Ok: forall<a,b> (value : a) -> result<a,b> constructor.
Flatten the result of a result.
Map over the Okstd/core/types/Ok: forall<a,b> (value : a) -> result<a,b> component of a resultstd/core/types/result: (V, V) -> V type.
Convert a resultstd/core/types/result: (V, V) -> V to a maybestd/core/types/maybe: V -> V type discarding the value of the Errorstd/core/types/Error: forall<a,b> (error : b) -> result<a,b> constructor
and using Juststd/core/types/Just: forall<a> (value : a) -> maybe<a> for the Okstd/core/types/Ok: forall<a,b> (value : a) -> result<a,b> constructor.
Show an resultstd/core/types/result: (V, V) -> V type.
Standard
resultstd/core/types/result: (V, V) -> Vfunctions..