msgpack-python/perl
tokuhirom f51123d009 oops
2010-05-17 05:49:39 +09:00
..
benchmark perl: display module version 2009-07-30 13:29:24 +09:00
lib/Data Perl: releng for 0.12 2010-05-05 17:28:38 +09:00
t Perl: added test case 2010-05-05 16:22:40 +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 Perl: releng for 0.12 2010-05-05 17:28:38 +09:00
Makefile.PL oops 2010-05-17 05:49:39 +09:00
MANIFEST.SKIP Perl: change for release Data-MessagePack-0.09 2010-01-04 12:10:46 +09:00
MessagePack.c - fixed SVt_PVNV issue. 2009-07-30 16:22:00 +09:00
pack.c Perl: support NVTYPE=="long double" or IVTYPE="long long" environment. 2010-01-04 11:59:52 +09:00
README Perl: added README file. 2010-05-05 15:50:07 +09:00
unpack.c Perl: PERL_NO_GET_CONTEXT makes horrible dTHXs. remove it. 2010-05-05 17:25:45 +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/>