File Coverage

blib/lib/Locale/CLDR/Locales/En/Any/Nl.pm
Criterion Covered Total %
statement 29 29 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod n/a
total 39 39 100.0


line stmt bran cond sub pod time code
1             =encoding utf8
2              
3             =head1 NAME
4              
5             Locale::CLDR::Locales::En::Any::Nl - Package for language English
6              
7             =cut
8              
9             package Locale::CLDR::Locales::En::Any::Nl;
10             # This file auto generated from Data\common\main\en_NL.xml
11             # on Fri 13 Oct 9:13:26 am GMT
12              
13 1     1   909 use strict;
  1         2  
  1         27  
14 1     1   5 use warnings;
  1         2  
  1         20  
15 1     1   4 use version;
  1         2  
  1         4  
16              
17             our $VERSION = version->declare('v0.34.2');
18              
19 1     1   84 use v5.10.1;
  1         4  
20 1     1   6 use mro 'c3';
  1         2  
  1         6  
21 1     1   23 use utf8;
  1         1  
  1         12  
22 1     1   32 use if $^V ge v5.12.0, feature => 'unicode_strings';
  1         2  
  1         10  
23 1     1   82 use Types::Standard qw( Str Int HashRef ArrayRef CodeRef RegexpRef );
  1         9  
  1         7  
24 1     1   885 use Moo;
  1         4  
  1         5  
25              
26             extends('Locale::CLDR::Locales::En::Any::150');
27             has 'number_currency_formats' => (
28             is => 'ro',
29             isa => HashRef,
30             init_arg => undef,
31             default => sub { {
32             'latn' => {
33             'pattern' => {
34             'default' => {
35             'accounting' => {
36             'negative' => '(¤ #,##0.00)',
37             'positive' => '¤ #,##0.00',
38             },
39             'standard' => {
40             'negative' => '¤ -#,##0.00',
41             'positive' => '¤ #,##0.00',
42             },
43             },
44             },
45             },
46             } },
47             );
48              
49 1     1   394 no Moo;
  1         3  
  1         4  
50              
51             1;
52              
53             # vim: tabstop=4