Widmogrod\Monad\Writer::map PHP Method

map() public method

public map ( callable $function )
$function callable
    public function map(callable $function)
    {
        return static::of($function($this->value), $this->side);
    }