1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
Name: byteable
Version: 0.1.1
Synopsis: Type class for sequence of bytes
Description:
Abstract class to manipulate sequence of bytes
.
The use case of this class is abstracting manipulation of
types that are just wrapping a bytestring with stronger and
more meaniful name.
.
Usual definition of those types are of the form: newtype MyType = MyType ByteString
License: BSD3
License-file: LICENSE
Copyright: Vincent Hanquez <vincent@snarc.org>
Author: Vincent Hanquez <vincent@snarc.org>
Maintainer: vincent@snarc.org
Category: Data
Stability: experimental
Build-Type: Simple
Homepage: http://github.com/vincenthz/hs-byteable
Cabal-Version: >=1.8
data-files: README.md
Library
Exposed-modules: Data.Byteable
Build-depends: base >= 4 && < 5
, bytestring
ghc-options: -Wall -fwarn-tabs
source-repository head
type: git
location: git://github.com/vincenthz/hs-byteable
|