Overrides AbstractString::append
public function append(string ...$suffix) : static { $str = clone $this; $str->string .= 1 >= \count($suffix) ? $suffix[0] ?? '' : implode('', $suffix); return $str; }