Popularity
1.4
Stable
Activity
0.0
Stable
1
1
0

Monthly Downloads: 23
Programming language: Haskell
License: LicenseRef-Apache
Tags: Data     Binary     Parsing    
Latest version: v2.0.4

binary-ext alternatives and similar packages

Based on the "binary" category.
Alternatively, view binary-ext alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of binary-ext or a related project?

Add another 'binary' Package

README

binary-ext package

Hackage version Stackage version Stackage nightly version Build status

An alternate with typed errors and other advantages for the Data.Binary.Get.Get monad from the binary package and Data.Attoparsec.Text.Parser monad from the attoparsec package.

Building binary-ext

Here's how to get the latest version of the repository and build.

$ git clone https://github.com/A1-Triard/binary-ext.git
$ cd binary-ext
$ stack build

Run the test suite.

$ stack test

Using binary-ext for binary serialization/deserialization

Import modules:

import Data.Conduit.Parsers.Binary.Get
import Data.Conduit.Parsers.Binary.Put

and then use the Get and Put monads to serialize/deserialize.

More information in the haddock documentation.

Using binary-ext for text serialization/deserialization

Import modules:

import Data.Conduit.Parsers.Text.Parser
import Data.Conduit.Parsers.Text.Gen

and then use the Parser and TextGen monads to serialize/deserialize.

More information in the haddock documentation.