Returns `true` if the given offset exists in this array.
@link http://php.net/manual/en/arrayaccess.offsetexists.php ArrayAccess::offsetExists()
array-key $offset The offset to check.:
public function offsetExists(mixed $offset) : bool { return isset($this->data[$offset]); }