Hoogle Search

Within LTS Haskell 24.35 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. sourceList :: forall (m :: Type -> Type) a l i u . Monad m => [a] -> Pipe l i a u m ()

    conduit Data.Conduit.Internal

    Convert a list into a source. Since 0.3.0

  2. sourceToList :: Monad m => ConduitT () a m () -> m [a]

    conduit Data.Conduit.Internal

    Convert a Source into a list. The basic functionality can be explained as:

    sourceToList src = src $$ Data.Conduit.List.consume
    
    However, sourceToList is able to produce its results lazily, which cannot be done when running a conduit pipeline in general. Unlike the Data.Conduit.Lazy module (in conduit-extra), this function performs no unsafe I/O operations, and therefore can only be as lazy as the underlying monad. Since 1.2.6

  3. sourceListS :: forall (m :: Type -> Type) a . Monad m => [a] -> StreamProducer m a

    conduit Data.Conduit.Internal.List.Stream

    No documentation available.

  4. sourceList :: forall (m :: Type -> Type) a i . Monad m => [a] -> ConduitT i a m ()

    conduit Data.Conduit.List

    Yield the values from the list. Subject to fusion

  5. getListOf :: Get a -> Get [a]

    cereal Data.Serialize.Get

    Get a list in the following format: Word64 (big endian format) element 1 ... element n

  6. putListOf :: Putter a -> Putter [a]

    cereal Data.Serialize.Put

    No documentation available.

  7. fromJSONKeyList :: FromJSONKey a => FromJSONKeyFunction [a]

    gogol-core Gogol.Data.JSON

    This is similar in spirit to the readList method of Read. It makes it possible to give String keys special treatment without using OverlappingInstances. End users should always be able to use the default implementation of this method.

  8. parseJSONList :: FromJSON a => Value -> Parser [a]

    gogol-core Gogol.Data.JSON

    No documentation available.

  9. toEncodingList :: ToJSON a => [a] -> Encoding

    gogol-core Gogol.Data.JSON

    No documentation available.

  10. toJSONKeyList :: ToJSONKey a => ToJSONKeyFunction [a]

    gogol-core Gogol.Data.JSON

    This is similar in spirit to the showsList method of Show. It makes it possible to give String keys special treatment without using OverlappingInstances. End users should always be able to use the default implementation of this method.

Page 54 of many | Previous | Next