Some::select( $value )


Source

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

    public function select($value)
    {
        if ($this->value === $value) {
            return $this;
        }

        return None::create();
    }