See Original text in context
method trim-leading(Allomorph:)
Calls Str.trim-leading
on the invocant's Str
value.
See Original text in context
sub trim-leading(Str(Cool))method trim-leading()
Coerces the invocant (or in sub form, its argument) to Str, and returns the string with leading whitespace stripped.
my = ' abc '.trim-leading;say "<$stripped>"; # OUTPUT: «<abc >»
See Original text in context
method trim-leading(Str: --> Str)
Removes the whitespace characters from the beginning of a string. See also trim.