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
  • first Source string.
  • count Number of repetitions.
Returns

A new String with repeated content.

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