]> Git — Sourcephile - gargantext.git/blob - Data.ByteString/Extended.hs
[DEP] servant-swagger dep added.
[gargantext.git] / Data.ByteString / Extended.hs
1 {-# OPTIONS_GHC -fno-warn-orphans #-}
2
3 {-|
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
10 Portability : POSIX
11
12 Example showing how to extend existing base libraries.
13 -}
14
15
16 module Data.ByteString.Extended ( module Data.ByteString
17 , replace
18 ) where
19 import Data.ByteString
20
21 replace :: ByteString -> ByteString -> ByteString -> ByteString
22 replace = undefined
23
24 -- instance (Binary k, Binary v) => Binary (HaskMap k v) where
25 -- ...