See Original text in context
method flip(Allomorph:)
Calls Str.flip
on the invocant's Str
value.
See Original text in context
sub flip(Cool --> Str)method flip()
Coerces the invocant (or in sub form, its argument) to Str, and returns a reversed version.
say 421.flip; # OUTPUT: «124»
See Original text in context
multi sub flip(Str --> Str)multi method flip(Str: --> Str)
Returns the string reversed character by character.
Examples:
"Raku".flip; # OUTPUT: «ukaR»"ABBA".flip; # OUTPUT: «ABBA»