Pinq\Collection::offsetUnset PHP Method

offsetUnset() public method

public offsetUnset ( $index )
    public function offsetUnset($index)
    {
        if ($this->source !== null) {
            $this->source->offsetUnset($index);
        } else {
            $this->toOrderedMap()->offsetUnset($index);
        }
    }

Usage Example

Example #1
0
 public function offsetUnset($index)
 {
     if ($this->source !== null) {
         $this->source->offsetUnset($index);
     } else {
         $this->toOrderedMap()->offsetUnset($index);
     }
 }