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