Repeat the string multiple times.
Twine\Str::repeat( int $multiplier ) : Twine\Str
$multiplier | Number of times to repeat the string |
$string = new Twine\Str('beetlejuice');
$string->repeat(3); // Returns 'beetlejuicebeetlejuicebeetlejuice'