Overrides AbstractString::width
public function width(bool $ignoreAnsiDecoration = true) : int { $string = preg_match('//u', $this->string) ? $this->string : preg_replace('/[\\x80-\\xFF]/', '?', $this->string); return (new CodePointString($string))->width($ignoreAnsiDecoration); }