See Original text in context
method lc(Allomorph:)
Calls Str.lc
on the invocant's Str
value.
See Original text in context
sub lc(Str(Cool))method lc()
Coerces the invocant (or in sub form, its argument) to Str, and returns it case-folded to lower case.
say "ABC".lc; # OUTPUT: «abc»
See Original text in context
multi sub lc(Str --> Str)multi method lc(Str: --> Str)
Returns a lower-case version of the string.
Examples:
lc("A"); # OUTPUT: «"a"»"A".lc; # OUTPUT: «"a"»