File Coverage

blib/lib/Unicode/Collate/CJK/Pinyin.pm
Criterion Covered Total %
statement 10 10 100.0
branch 2 2 100.0
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 16 17 94.1


line stmt bran cond sub pod time code
1             package Unicode::Collate::CJK::Pinyin;
2              
3 4     4   926 use 5.006;
  4         16  
4 4     4   26 use strict;
  4         7  
  4         136  
5 4     4   25 use warnings;
  4         9  
  4         930  
6              
7             our $VERSION = '1.28';
8              
9             my %u2p;
10             my $wt = 0x8000;
11              
12             while () {
13             last if /^__END__/;
14             my @c = split;
15             for my $c (@c) {
16             next if !$c;
17             $u2p{hex($c)} = $wt if $c !~ /-/;
18             $wt++;
19             }
20             }
21              
22             sub weightPinyin {
23 1989     1989 0 3042 my $u = shift;
24 1989 100       9493 return exists $u2p{$u} ? $u2p{$u} : undef;
25             }
26              
27             1;
28             __DATA__