Ouzo\Utilities\Iterator\FluentIterator::firstOr PHP Method

firstOr() public method

Returns the first element in this iterator or defaultValue.
public firstOr ( $default ) : mixed
$default
return mixed
    public function firstOr($default)
    {
        return Iterators::firstOr($this->iterator, $default);
    }