File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -947,7 +947,8 @@ Defined as:
947
947
Returns the L < unicode property|http://userguide.icu-project.org/strings/properties >
948
948
of the first character. If no property is specified returns the
949
949
L < General Category|https://en.wikipedia.org/wiki/Unicode_character_property#General_Category > .
950
- Returns a Bool for Boolean properties.
950
+ Returns a Bool for Boolean properties. A L < uniprops|/routine/uniprops > routine can be used
951
+ to get property for every character in a string.
951
952
952
953
say 'a'.uniprop; # OUTPUT: «Ll»
953
954
say '1'.uniprop; # OUTPUT: «Nd»
@@ -964,8 +965,9 @@ Interprets the invocant as a L<Str|/type/Str>, and returns the
964
965
L < unicode property|http://userguide.icu-project.org/strings/properties > for each character
965
966
as a Seq. If no property is specified returns the
966
967
L < General Category|https://en.wikipedia.org/wiki/Unicode_character_property#General_Category > .
967
- Returns a Bool for Boolean properties. Similar to L < uniprop|/routine/uniprop >
968
-
968
+ Returns a Bool for Boolean properties. Similar to
969
+ L < uniprop|/routine/uniprop > , but for each character in the passed
970
+ string.
969
971
970
972
= head2 routine uniname
971
973
You can’t perform that action at this time.
0 commit comments