HH\Lib\Str\repeat
Requires the Hack Standard Library to be installed.
Facebook Engineer?
This function is available as Str\repeat()
in Facebook's www repository.
Returns the input string repeated $multiplier
times
namespace HH\Lib\Str;
function repeat(
string $string,
int $multiplier,
): string;
If the multiplier is 0, the empty string will be returned.
Parameters
string $string
int $multiplier
Returns
string