The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

=encoding utf8
=head1 NAME
Locale::CLDR::Locales::Arn - Package for language Mapuche
=cut
# This file auto generated from Data\common\main\arn.xml
# on Fri 17 Jan 12:03:31 pm GMT
use strict;
use version;
our $VERSION = version->declare('v0.46.0');
use v5.12.0;
use mro 'c3';
use utf8;
use feature 'unicode_strings';
use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
use Moo;
extends('Locale::CLDR::Locales::Root');
has 'display_name_language' => (
is => 'ro',
isa => CodeRef,
init_arg => undef,
default => sub {
sub {
my %languages = (
'arn' => 'Mapudungun',
);
if (@_) {
return $languages{$_[0]};
}
return \%languages;
}
},
);
has 'characters' => (
is => 'ro',
isa => HashRef,
init_arg => undef,
default => $^V ge v5.18.0
? eval <<'EOT'
sub {
no warnings 'experimental::regex_sets';
return {
auxiliary => qr{[b c h j q x z]},
index => ['A', '{CH}', 'D', 'E', 'F', 'G', 'I', 'K', 'LḺ', '{LL}', 'M', 'NÑṈ', '{NG}', 'O', 'P', 'R', 'S', '{SH}', 'TṮ', '{TR}', 'UÜ', 'W', 'Y'],
main => qr{[a {ch} d e f g i k lḻ {ll} m nñṉ {ng} o p r s {sh} tṯ {tr} uü w y]},
};
},
EOT
: sub {
return { index => ['A', '{CH}', 'D', 'E', 'F', 'G', 'I', 'K', 'LḺ', '{LL}', 'M', 'NÑṈ', '{NG}', 'O', 'P', 'R', 'S', '{SH}', 'TṮ', '{TR}', 'UÜ', 'W', 'Y'], };
},
);
no Moo;
1;
# vim: tabstop=4