- Timestamp:
- 01/14/08 21:07:19 (12 months ago)
- Files:
-
- 1 modified
-
docs/Perl6/Spec/Functions.pod (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
docs/Perl6/Spec/Functions.pod
r19424 r19478 13 13 Mark Stosberg <mark@summersault.com> 14 14 Date: 12 Mar 2005 15 Last Modified: 1 0Jan 200816 Version: 1 615 Last Modified: 14 Jan 2008 16 Version: 17 17 17 18 18 This document attempts to document the list of builtin functions in Perl 6. … … 1113 1113 until there is no further work to be done. 1114 1114 1115 Note that this function is really only applicable when dealing with codepoint 1116 strings. Grapheme strings are normally processed at a higher abstraction level 1117 that is independent of normalization, and are lazily normalized into the 1118 desired normalization when transferred to lexical scopes or handles that care. 1119 1115 1120 =item samecase 1116 1121 … … 1154 1159 =item codes 1155 1160 1156 our Int multi method codes ( Str $string: $nf = "C") is export1161 our Int multi method codes ( Str $string: $nf = $?NF) is export 1157 1162 1158 1163 Returns the number of codepoints in the string if it were canonicalized the … … 1162 1167 =item bytes 1163 1168 1164 our Int multi method bytes ( Str $string: $nf = "C", $enc = "UTF-8") is export1169 our Int multi method bytes ( Str $string: $nf = $?NF, $enc = $?ENC) is export 1165 1170 1166 1171 Returns the number of bytes in the string if it were encoded in the
