trim-trailing
ErrorsCollection

trim-trailing

Synthesised documentation from type/Allomorph type/Cool type/Str

From type/Allomorph

See Original text in context

method trim-trailing(Allomorph:D:)

Calls Str.trim-trailing on the invocant's Str value.

From type/Cool

See Original text in context

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 $stripped = '  abc '.trim-trailing;
say "<$stripped>";          # OUTPUT: «<  abc>␤»

From type/Str

See Original text in context

method trim-trailing(Str:D: --> Str)

Removes the whitespace characters from the end of a string. See also trim.