conduit-algorithms-0.0.8.1: Conduit-based algorithms

Copyright2018 Luis Pedro Coelho
LicenseMIT
Maintainerluis@luispedro.org
Safe HaskellNone
LanguageHaskell2010

Data.Conduit.Algorithms.Storable

Description

Higher level async processing interfaces.

Synopsis

Documentation

writeStorableV :: forall m a. (MonadIO m, Monad m, Storable a) => Conduit (Vector a) m ByteString Source #

write a Storable vector

This uses the same format as in-memory

See readStorableV

readStorableV :: forall m a. (MonadIO m, Storable a) => Int -> ConduitM ByteString (Vector a) m () Source #

read a Storable vector

This expects the same format as the in-memory vector

See writeStorableV