CLDR::List

Localized list formatters using the Unicode CLDR

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('1'..'ļ¼”');  # ļ¼‘ć€ļ¼’ć€ļ¼“å’Œļ¼”

DESCRIPTION

Localized list formatters using the Unicode CLDR.

Attributes

  • locale

Methods

  • format

SEE ALSO

AUTHOR

Nova Patch

COPYRIGHT AND LICENSE

Copyright 2013 – 2017 Nova Patch

Copyright 2024 Raku Community

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

CLDR::List v0.2

Localized list formatters using the Unicode CLDR

Authors

    License

    Artistic-2.0

    Dependencies

    Test Dependencies

    Provides

    • CLDR::List

    The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.