Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
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
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.
toJSONList :: ToJSON a => [a] -> Valuegogol-core Gogol.Data.JSON No documentation available.
-
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.
onSublist :: Eq a => [a] -> Splitter asplit Data.List.Split A splitting strategy that splits on the given list, when it is encountered as an exact subsequence.
>>> split (onSublist "xyz") "aazbxyzcxd" ["aazb","xyz","cxd"]
Note that splitting on the empty list is a special case, which splits just before every element of the list being split.>>> split (onSublist "") "abc" ["","","a","","b","","c"]
>>> split (dropDelims . dropBlanks $ onSublist "") "abc" ["a","b","c"]
However, if you want to break a list into singleton elements like this, you are better off using chunksOf 1, or better yet, map (:[]).-
split Data.List.Split.Internals Internal representation of a split list that tracks which pieces are delimiters and which aren't.