line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#-*- perl -*- |
2
|
|
|
|
|
|
|
#-*- coding: utf-8 -*- |
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
package Unicode::Precis::UsernameCaseMapped; |
5
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
|
1050
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
25
|
|
7
|
1
|
|
|
1
|
|
5
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
27
|
|
8
|
1
|
|
|
1
|
|
5
|
use base qw(Unicode::Precis); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
117
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $VERSION = '1.000'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub new { |
13
|
0
|
|
|
0
|
1
|
|
bless shift->SUPER::new( |
14
|
|
|
|
|
|
|
WidthMappingRule => 'Decomposition', |
15
|
|
|
|
|
|
|
CaseMappingRule => 'Fold', |
16
|
|
|
|
|
|
|
NormalizationRule => 'NFC', |
17
|
|
|
|
|
|
|
DirectionalityRule => 'BiDi', |
18
|
|
|
|
|
|
|
StringClass => 'IdentifierClass', |
19
|
|
|
|
|
|
|
); |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
__END__ |