msgpack-python/perl
2010-09-02 23:56:55 +09:00
..
benchmark perl: display module version 2009-07-30 13:29:24 +09:00
lib/Data modified pod 2010-09-02 23:56:55 +09:00
t modified t/05_preferred_int.t for Win32 2010-09-02 23:48:57 +09:00
xs-src removed commented out codes 2010-09-02 14:33:59 +09:00
xt Perl: Test::Requires is not needed for this test. 2010-05-05 17:25:08 +09:00
.gitignore Perl: use M::I::XSUtil 2009-07-30 16:38:03 +09:00
.shipit Checking in changes prior to tagging of version 0.01. Changelog diff is: 2009-07-01 18:40:14 +09:00
Changes Changes 2010-09-02 23:52:36 +09:00
Makefile.PL removed dependency on Data::Float 2010-09-02 23:45:05 +09:00
MANIFEST.SKIP Perl: change for release Data-MessagePack-0.09 2010-01-04 12:10:46 +09:00
README Perl: added README file. 2010-05-05 15:50:07 +09:00
util.h - fixed SVt_PVNV issue. 2009-07-30 16:22:00 +09:00

NAME
    Data::MessagePack - messagepack

SYNOPSIS
        my $packed = Data::MessagePack->pack($dat);
        my $unpacked = Data::MessagePack->unpack($dat);

DESCRIPTION
    Data::MessagePack is a binary packer for perl.

METHODS
    my $packed = Data::MessagePack->pack($data);
        pack the $data to messagepack format string.

    my $unpacked = Data::MessagePack->unpack($msgpackstr);
        unpack the $msgpackstr to messagepack format string.

Configuration Variables
    $Data::MessagePack::PreferInteger
        Pack the string as int when the value looks like int(EXPERIMENTAL).

AUTHORS
    Tokuhiro Matsuno

THANKS TO
    Jun Kuriyama

LICENSE
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

SEE ALSO
    <http://msgpack.sourceforge.jp/>