The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Unicode::Number::Result - class to obtain different representations of a string to integer conversion

VERSION

version 0.002

SYNOPSIS

  use Unicode::Number;
  use Math::BigInt;
  use v5.14;

  say Unicode::Number->new->string_to_number('Western', '123')->to_bigint;

DESCRIPTION

This class is used to wrap around the results of a string to number conversion from the string_to_number method in Unicode::Number.

METHODS

to_string

Returns a string that represents the result.

to_numeric

Returns an integer that numifies the result.

to_numeric

Returns a Math::BigInt of the result.

AUTHOR

Zakariyya Mughal <zmughal@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Zakariyya Mughal.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.