Combinator which turns a function that returns a Result<T, E> (with a single error) into one that returns a Validation<T, E> (with an array containting one or more errors).
Result<T, E>
Validation<T, E>
Function to lift.
Lifted function.
Combinator which turns a function that returns a
Result<T, E>
(with a single error) into one that returns aValidation<T, E>
(with an array containting one or more errors).