klyn.String.operator*
method
public native static operator*( readonly first as String, readonly count as UInt ) as String
Description

Repeats a string a given number of times.

Parameters
ParameterDescription
firstSource string.
countNumber of repetitions.
Returns

A new String with repeated content.

Example
assert "ha" * 2u == "haha"