19 declare(strict_types=1);
40 return $this->
from(
static fn($value):
Result => $transformation->
applyTo(
new Ok($value))->map(
41 static fn($value): array => [$value]
75 if (is_array($value) && count($value) === 1 && isset($value[0])) {
89 ->then($this->
combine($previous, $child, $cc))
90 ->except($this->
error($cc))
91 )->except($this->
error($cc))
97 return static fn(array $values):
Result => $cc(
new Ok(
then(callable $f)
Get a new result from the callable or do nothing if this is an error.
A result encapsulates a value or an error and simplifies the handling of those.