-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Conduit-based ZStd Compression
--   
--   Zstandard compression packaged as a conduit. This is a very thin
--   wrapper around the <a>official hs-zstd interface</a>
@package conduit-zstd
@version 0.0.2.0

module Data.Conduit.Zstd

-- | compression conduit
compress :: forall (m :: Type -> Type). MonadIO m => Int -> ConduitT ByteString ByteString m ()

-- | decompression conduit
decompress :: forall (m :: Type -> Type). MonadIO m => ConduitT ByteString ByteString m ()
