|
NAMEData::IEEE754 - Pack and unpack big-endian IEEE754 floats and doublesVERSIONversion 0.02SYNOPSISuse Data::IEEE754 qw( pack_double_be unpack_double_be ); my $packed = pack_double_be(3.14); my $double = unpack_double_be($packed); DESCRIPTIONThis module provides some simple convenience functions for packing and unpacking IEEE 754 floats and doubles.If you can require Perl 5.10 or greater then this module is pointless. Just use the "d>" and "f>" pack formats instead! Currently this module only implements big-endian order. Patches to add little-endian order subroutines are welcome. EXPORTSThis module optionally exports the following four functions:
CREDITSThe code in this module is more or less copied and pasted from Data::MessagePack's "Data::MessagePack::PP" module. That module was written by Makamaka Hannyaharamitu. The code was then tweaked by Dave Rolsky, so blame him for the bugs.SUPPORTPlease submit bugs to the CPAN RT system at http://rt.cpan.org/NoAuth/Bugs.html?Dist=Data-IEEE754 or via email at bug-data-ieee754@rt.cpan.org.Bugs may be submitted through <https://github.com/maxmind/Data-IEEE754/issues>. AUTHORDave Rolsky <autarch@urth.org>CONTRIBUTORS
COPYRIGHT AND LICENSEThis software is Copyright (c) 2017 by MaxMind, Inc.This is free software, licensed under: The Artistic License 2.0 (GPL Compatible)
Visit the GSP FreeBSD Man Page Interface. |