Removes the given offset and its value from the array.
@link http://php.net/manual/en/arrayaccess.offsetunset.php ArrayAccess::offsetUnset()
array-key $offset The offset to remove from the array.:
public function offsetUnset(mixed $offset) : void { unset($this->data[$offset]); }