Some::map( $callable )


Source

File: vendor/phpoption/phpoption/src/PhpOption/Some.php

    public function map($callable)
    {
        return new self(call_user_func($callable, $this->value));
    }