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.
parseJSONList :: FromJSON a => Value -> Parser [a]aeson Data.Aeson No documentation available.
toEncodingList :: ToJSON a => [a] -> Encodingaeson Data.Aeson No documentation available.
toJSONKeyList :: ToJSONKey a => ToJSONKeyFunction [a]aeson Data.Aeson 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] -> Valueaeson Data.Aeson No documentation available.
fromList :: [(Key, v)] -> KeyMap vaeson Data.Aeson.KeyMap Construct a map with the supplied mappings. If the list contains duplicate mappings, the later mappings take precedence.
>>> fromList [("a", 'x'), ("a", 'y')] fromList [("a",'y')]
fromListWith :: (v -> v -> v) -> [(Key, v)] -> KeyMap vaeson Data.Aeson.KeyMap Construct a map from a list of elements. Uses the provided function, f, to merge duplicate entries with (f newVal oldVal).
toAscList :: KeyMap v -> [(Key, v)]aeson Data.Aeson.KeyMap Return a list of this map's elements in ascending order based of the textual key.
toList :: KeyMap v -> [(Key, v)]aeson Data.Aeson.KeyMap Return a list of this map's keys and elements. The order is not stable. Use toAscList for stable ordering.
fromJSONKeyList :: FromJSONKey a => FromJSONKeyFunction [a]aeson Data.Aeson.Types 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.
-
aeson Data.Aeson.Types No documentation available.