msgpack-1.0.0: A Haskell implementation of MessagePack

Copyright(c) Hideyuki Tanaka, 2009-2015
LicenseBSD3
Maintainertanaka.hideyuki@gmail.com
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Data.MessagePack

Contents

Description

Simple interface to pack and unpack MessagePack data.

Synopsis

Simple interface to pack and unpack msgpack binary

pack :: MessagePack a => a -> ByteString Source

Pack a Haskell value to MessagePack binary.

unpack :: MessagePack a => ByteString -> Maybe a Source

Unpack MessagePack binary to a Haskell value. If it fails, it returns Nothing.

Re-export modules