Some::reject( $value )
Source
File: vendor/phpoption/phpoption/src/PhpOption/Some.php
public function reject($value)
{
if ($this->value === $value) {
return None::create();
}
return $this;
}
File: vendor/phpoption/phpoption/src/PhpOption/Some.php
public function reject($value)
{
if ($this->value === $value) {
return None::create();
}
return $this;
}