60 public function map(callable
$f);
An exception for terminatinating execution or to throw for unit testing.
A result encapsulates a value or an error and simplifies the handling of those.
then(callable $f)
Get a new result from the callable or do nothing if this is an error.
isError()
Get to know if the result is an error.
valueOr($default)
Get the encapsulated value or the supplied default if result is an error.
except(callable $f)
Feed the error into a callable and replace this with the result or do nothing if this is a value.
isOK()
Get to know if the result is ok.
map(callable $f)
Create a new result where the contained value is modified with $f.
value()
Get the encapsulated value.
error()
Get the encapsulated error.