routine chrs
1 | class Nil |
1.1 | (Nil) method chrs |
2 | class Cool |
2.1 | (Cool) routine chrs |
Documentation for routine chrs
assembled from the following types:
class Nil
From Nil
(Nil) method chrs
Will return \0
, and also throw a warning.
class Cool
From Cool
(Cool) routine chrs
Defined as:
sub chrs(* --> Str)method chrs()
Coerces the invocant (or in the sub form, the argument list) to a list of integers, and returns the string created by interpreting each integer as a Unicode codepoint, and joining the characters.
say <67 97 109 101 108 105 97>.chrs; # OUTPUT: «Camelia»
This is the list-input version of chr. The inverse operation is ords.