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. liftToEncodingList2 :: ToJSON2 f => (a -> Bool) -> (a -> Encoding) -> ([a] -> Encoding) -> (b -> Bool) -> (b -> Encoding) -> ([b] -> Encoding) -> [f a b] -> Encoding

    aeson Data.Aeson

    No documentation available.

  2. liftToJSONList :: ToJSON1 f => (a -> Bool) -> (a -> Value) -> ([a] -> Value) -> [f a] -> Value

    aeson Data.Aeson

    No documentation available.

  3. liftToJSONList2 :: ToJSON2 f => (a -> Bool) -> (a -> Value) -> ([a] -> Value) -> (b -> Bool) -> (b -> Value) -> ([b] -> Value) -> [f a b] -> Value

    aeson Data.Aeson

    No documentation available.

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

    aeson Data.Aeson

    No documentation available.

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

    aeson Data.Aeson

    No documentation available.

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

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

    aeson Data.Aeson

    No documentation available.

  8. 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')]
    

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

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

Page 48 of many | Previous | Next