klyn.String.operator*=
method
public native operator*=( readonly count as UInt ) as String
Description

Repeats this string in place.

Parameters
  • count Number of repetitions.
Returns

This string after repetition.

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