cereal-vector-0.2.0.1: Serialize instances for Data.Vector types.

Safe HaskellNone
LanguageHaskell98

Data.Vector.Serialize

Contents

Description

Data.Serialize functions for Data.Vector.Generic vectors. Orphan instances are provided for Data.Vector, Data.Vector.Unboxed, Data.Vector.Storable, and Data.Vector.Primitive vectors.

The serialized format is an Int64 representing the length of the vector, followed by the Data.Serialized contents of each element.

Note that the functions in Data.Vector.Storable.UnsafeSerialize perform much better when serialization does not need to account for host endianness and word size.

Synopsis

Documentation

genericGetVector :: (Serialize a, Vector v a) => Get (v a) #

Read a Vector.

genericPutVector :: (Serialize a, Vector v a) => Putter (v a) #

Write a Vector.

genericGetVectorWith :: Vector v a => Get a -> Get (v a) #

Read a Vector using custom Get for the vector's elements.

genericPutVectorWith :: Vector v a => Putter a -> Putter (v a) #

Write a Vector using custom Putter for the vector's elements.

Orphan instances

(Serialize a, Unbox a) => Serialize (Vector a) # 
Instance details

Methods

put :: Putter (Vector a) #

get :: Get (Vector a) #

(Serialize a, Storable a) => Serialize (Vector a) # 
Instance details

Methods

put :: Putter (Vector a) #

get :: Get (Vector a) #

(Serialize a, Prim a) => Serialize (Vector a) # 
Instance details

Methods

put :: Putter (Vector a) #

get :: Get (Vector a) #

Serialize a => Serialize (Vector a) # 
Instance details

Methods

put :: Putter (Vector a) #

get :: Get (Vector a) #