In Allomorph§
See primary documentation in context for method lc
method lc(Allomorph:)
Calls Str.lc
on the invocant's Str
value.
In Str§
See primary documentation in context for routine lc
multi 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"»
In Cool§
See primary documentation in context for routine lc
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»