/usr/share/perl5/Text/PDF/Number.pm is in libtext-pdf-perl 0.31-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | package Text::PDF::Number;
=head1 NAME
Text::PDF::Number - Numbers in PDF. Inherits from L<Text::PDF::String>
=head1 METHODS
=cut
use strict;
use vars qw(@ISA);
# no warnings qw(uninitialized);
use Text::PDF::String;
@ISA = qw(Text::PDF::String);
=head2 $n->convert($str)
Converts a string from PDF to internal, by doing nothing
=cut
sub convert
{ return $_[1]; }
=head2 $n->as_pdf
Converts a number to PDF format
=cut
sub as_pdf
{ $_[0]->{'val'}; }
|