line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Unicode::Truncate; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
our $VERSION = '0.303'; |
4
|
|
|
|
|
|
|
|
5
|
3
|
|
|
3
|
|
69892
|
use strict; |
|
3
|
|
|
|
|
10
|
|
|
3
|
|
|
|
|
106
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
require Exporter; |
8
|
3
|
|
|
3
|
|
17
|
use base 'Exporter'; |
|
3
|
|
|
|
|
7
|
|
|
3
|
|
|
|
|
285
|
|
9
|
|
|
|
|
|
|
our @EXPORT = qw(truncate_egc truncate_egc_inplace); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
# Commented out for distribution by Inline::Module::LeanDist |
12
|
|
|
|
|
|
|
#use Inline::Module::LeanDist C => 'DATA', FILTERS => [ [ 'Uniprops2Ragel', push(@INC, 'inc') ], [ Ragel => '-G2' ] ]; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
# XSLoader added for distribution by Inline::Module::LeanDist: |
15
|
|
|
|
|
|
|
require XSLoader; XSLoader::load(__PACKAGE__, $VERSION); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__DATA__ |