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.
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
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.6sourceListS :: forall (m :: Type -> Type) a . Monad m => [a] -> StreamProducer m aconduit Data.Conduit.Internal.List.Stream No documentation available.
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
-
cereal Data.Serialize.Get Get a list in the following format: Word64 (big endian format) element 1 ... element n
putListOf :: Putter a -> Putter [a]cereal Data.Serialize.Put No documentation available.
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.
parseJSONList :: FromJSON a => Value -> Parser [a]gogol-core Gogol.Data.JSON No documentation available.
toEncodingList :: ToJSON a => [a] -> Encodinggogol-core Gogol.Data.JSON No documentation available.
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.