1 {-# OPTIONS_GHC -fno-warn-orphans #-}
4 Module : Data.ByteString.Extended
5 Description : Short description
6 Copyright : (c) CNRS, 2017
7 License : AGPL + CECILL v3
8 Maintainer : team@gargantext.org
9 Stability : experimental
12 Example showing how to extend existing base libraries.
16 module Data.ByteString.Extended ( module Data.ByteString
19 import Data.ByteString
21 replace :: ByteString -> ByteString -> ByteString -> ByteString
24 -- instance (Binary k, Binary v) => Binary (HaskMap k v) where