Giter Site home page Giter Site logo

Comments (4)

snoyberg avatar snoyberg commented on August 20, 2024

I'm not sure what these functions would be exactly, can you give me a sample type signature?

from conduit.

nh2 avatar nh2 commented on August 20, 2024

The same as in http://hackage.haskell.org/package/conduit-1.0.8/docs/Data-Conduit-Binary.html, with lazy ByteStrings:

-- Existing:
sinkFile :: MonadResource m => FilePath -> Consumer ByteString m ()
sinkHandle :: MonadIO m => Handle -> Consumer ByteString m ()
sinkIOHandle :: MonadResource m => IO Handle -> Consumer ByteString m ()

-- What I mean:
sinkFileLbs :: MonadResource m => FilePath -> Consumer L.ByteString m ()
sinkHandleLbs :: MonadIO m => Handle -> Consumer L.ByteString m ()
sinkIOHandleLbs :: MonadResource m => IO Handle -> Consumer L.ByteString m ()

from conduit.

snoyberg avatar snoyberg commented on August 20, 2024

In that case, I'm not sure what the connection to sinkLbs is, or where a full copy would be implied. I would think that the natural way to address this would be something like:

unlazyConduit :: Monad m => Conduit L.ByteString m S.ByteString
unlazyConduit = Data.Conduit.List.concatMap L.toChunks

But it's hard for me to imagine a situation where you would ever be dealing with a stream of lazy bytestrings, can you clarify how that arises?

from conduit.

nh2 avatar nh2 commented on August 20, 2024

But it's hard for me to imagine a situation where you would ever be dealing with a stream of lazy bytestrings, can you clarify how that arises?

I meant it only as a convenience for libraries which operate only on lazy bytestrings; at the momment, I have to map them to lazy myself. In general, I agree that streaming takes away the need for lazyness.

from conduit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.