routine trim-trailing
| 1 | class Str |
| 1.1 | (Str) method trim-trailing |
| 2 | class Cool |
| 2.1 | (Cool) routine trim-trailing |
Documentation for routine trim-trailing assembled from the following types:
class Str
From Str
(Str) method trim-trailing
method trim-trailing(Str: --> Str)
Removes the whitespace characters from the end of a string. See also trim.
class Cool
From Cool
(Cool) routine trim-trailing
Defined as:
sub trim-trailing(Str(Cool))method trim-trailing()
Coerces the invocant (or in sub form, its argument) to Str, and returns the string with trailing whitespace stripped.
my = ' abc '.trim-trailing;say "<$stripped>"; # OUTPUT: «< abc>»