Pinq\Iterators\Common\JoinIterator::withDefault PHP Method

withDefault() public method

public withDefault ( $value, $key = null )
    public function withDefault($value, $key = null)
    {
        $self = clone $this;
        $self->hasDefault = true;
        $self->defaultValue = $value;
        $self->defaultKey = $key;
        return $self;
    }