File Coverage

blib/lib/Locale/CLDR/Locales/En/Any/Us/Posix.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 31 31 100.0


line stmt bran cond sub pod time code
1             =head1
2              
3             Locale::CLDR::Locales::En::Any::Us::Posix - Package for language English
4              
5             =cut
6              
7             package Locale::CLDR::Locales::En::Any::Us::Posix;
8             # This file auto generated from Data\common\main\en_US_POSIX.xml
9             # on Sun 24 Apr 8:24:57 am GMT
10              
11 1     1   845 use version;
  1         2  
  1         5  
12              
13             our $VERSION = version->declare('v0.29.0');
14              
15 1     1   79 use v5.10.1;
  1         3  
16 1     1   5 use mro 'c3';
  1         1  
  1         4  
17 1     1   34 use utf8;
  1         2  
  1         5  
18 1     1   26 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         1  
  1         10  
19              
20 1     1   81 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         2  
  1         5  
21 1     1   626 use Moo;
  1         2  
  1         6  
22              
23             extends('Locale::CLDR::Locales::En::Any::Us');
24             has 'WordBreak_variables' => (
25             is => 'ro',
26             isa => ArrayRef,
27             init_arg => undef,
28             default => sub {[
29             '$MidLetter' => '[[$MidLetter]-[\:]]',
30             '$MidNumLet' => '[[$MidNumLet]-[.]]',
31             '$MidNum' => '[[$MidNum] [.]]',
32             ]}
33             );
34             has 'number_symbols' => (
35             is => 'ro',
36             isa => HashRef,
37             init_arg => undef,
38             default => sub { {
39             'latn' => {
40             'infinity' => q(INF),
41             'perMille' => q(0/00),
42             },
43             } }
44             );
45              
46             has 'number_formats' => (
47             is => 'ro',
48             isa => HashRef,
49             init_arg => undef,
50             default => sub { {
51             decimalFormat => {
52             'default' => {
53             'standard' => {
54             '' => '#0.######',
55             },
56             },
57             },
58             percentFormat => {
59             'default' => {
60             'standard' => {
61             '' => '#0%',
62             },
63             },
64             },
65             scientificFormat => {
66             'default' => {
67             'standard' => {
68             '' => '0.000000E+000',
69             },
70             },
71             },
72             } },
73             );
74              
75             has 'number_currency_formats' => (
76             is => 'ro',
77             isa => HashRef,
78             init_arg => undef,
79             default => sub { {
80             'latn' => {
81             'pattern' => {
82             'default' => {
83             'standard' => {
84             'positive' => '¤ #0.00',
85             },
86             },
87             },
88             },
89             } },
90             );
91              
92 1     1   1830 no Moo;
  1         1  
  1         4  
93              
94             1;
95              
96             # vim: tabstop=4