Overrides AbstractUnicodeString::codePointsAt
public function codePointsAt(int $offset) : array { $str = $offset ? $this->slice($offset, 1) : $this; return '' === $str->string ? [] : [ mb_ord($str->string, 'UTF-8'), ]; }