SqlParser\UtfString::offsetExists PHP Метод

offsetExists() публичный Метод

Checks if the given offset exists.
public offsetExists ( integer $offset ) : boolean
$offset integer The offset to be checked.
Результат boolean
    public function offsetExists($offset)
    {
        return $offset >= 0 && $offset < $this->charLen;
    }