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

NAME

SHARYANTO::Number::Util - Number utilities

VERSION

This document describes version 0.59 of SHARYANTO::Number::Util (from Perl distribution SHARYANTO-Number-Util), released on 2014-05-05.

SYNOPSIS

FUNCTIONS

format_metric($num, \%opts) => STR

Format $num using metric prefix, e.g.:

 format_metric(14     , {base=>10});               # => "14"
 format_metric(12000  , {base=> 2, precision=>1}); # => "11.7K"
 format_metric(12000  , {base=>10, precision=>1}); # => "11.7Ki"
 format_metric(-0.0017, {base=>10});               # => "1.7m"

Known options:

  • base => INT (either 2 or 10, default: 2)

  • precision => INT

  • i_mark => BOOL (default: 1)

    Give "i" suffix to prefixes when in base 10 for K, M, G, T, and so on.

SEE ALSO

SHARYANTO

Number formatting routines: Number::Format, Format::Human::Bytes, Number::Bytes::Human.

https://en.wikipedia.org/wiki/Metric_prefix

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/SHARYANTO-Number-Util.

SOURCE

Source repository is at https://github.com/sharyanto/perl-SHARYANTO-Number-Util.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=SHARYANTO-Number-Util

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Steven Haryanto.

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