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.

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

    aeson Data.Aeson

    No documentation available.

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

    aeson Data.Aeson

    No documentation available.

  3. 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.

  4. toJSONList :: ToJSON a => [a] -> Value

    aeson Data.Aeson

    No documentation available.

  5. fromList :: [(Key, v)] -> KeyMap v

    aeson 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')]
    

  6. fromListWith :: (v -> v -> v) -> [(Key, v)] -> KeyMap v

    aeson Data.Aeson.KeyMap

    Construct a map from a list of elements. Uses the provided function, f, to merge duplicate entries with (f newVal oldVal).

  7. 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.

  8. 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.

  9. 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.

  10. liftParseJSONList :: FromJSON1 f => Maybe a -> (Value -> Parser a) -> (Value -> Parser [a]) -> Value -> Parser [f a]

    aeson Data.Aeson.Types

    No documentation available.

Page 48 of many | Previous | Next