CLDR::List
image https://www.gravatar.com/avatar/656f15a25eff4437f5a82e7c929f41dd?s=96 not found
NAME
CLDR::List - Localized list formatters using the Unicode CLDR
SYNOPSIS
use CLDR::List;
my $list = CLDR::List.new(locale => 'en');
my @fruit = <apples oranges bananas>;
say $list.format(@fruit); # apples, oranges, and bananas
$list.locale = 'en-GB'; # British English
say $list.format(@fruit); # apples, oranges and bananas
$list.locale = 'zh-Hant'; # Traditional Chinese
say $list.format('ļ¼'..'ļ¼'); # ļ¼ćļ¼ćļ¼åļ¼
DESCRIPTION
Localized list formatters using the Unicode CLDR.
Attributes
locale
Methods
format
SEE ALSO
Unicode beyond just characters: Localization with the CLDR (video and slides)
AUTHOR
Nova Patch [email protected]
COPYRIGHT AND LICENSE
Ā© 2013ā2015 Nova Patch
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.