Number-RecordLocator
view release on metacpan or search on metacpan
lib/Number/RecordLocator.pm view on Meta::CPAN
Instantiate a new C<Number::RecordLocator> object. Right now, we don't
actually store any object-specific data, but in the future, we might.
=cut
sub new {
my $class = shift;
my $self = {};
bless $self => $class;
$self->init unless ($INITIALIZED);
return $self;
}
=head2 init
Initializes our integer to character and character to integer mapping tables.
=cut
( run in 0.313 second using v1.01-cache-2.11-cpan-65fba6d93b7 )