3 declare(strict_types=1);
19 public function isOK(): bool;
28 public function value();
33 public function isError(): bool;
41 public function error();
49 public function valueOr($default);
then(callable $f)
Get a new result from the callable or do nothing if this is an error.
isOK()
Get to know if the result is ok.
valueOr($default)
Get the encapsulated value or the supplied default if result is an error.
value()
Get the encapsulated value.
isError()
Get to know if the 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...
A result encapsulates a value or an error and simplifies the handling of those.
map(callable $f)
Create a new result where the contained value is modified with $f.
error()
Get the encapsulated error.