Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. isProperSubmapOf :: (Ord k, Eq a) => Map k a -> Map k a -> Bool

    hashmap Data.HashMap

    Is this a proper submap? (ie. a submap but not equal).

  2. isProperSubmapOfBy :: Ord k => (a -> b -> Bool) -> Map k a -> Map k b -> Bool

    hashmap Data.HashMap

    Is this a proper submap? (ie. a submap but not equal). The expression (isProperSubmapOfBy f m1 m2) returns True when m1 and m2 are not equal, all keys in m1 are in m2, and when f returns True when applied to their respective values.

  3. isSubmapOf :: (Ord k, Eq a) => Map k a -> Map k a -> Bool

    hashmap Data.HashMap

    Is this a submap?

  4. isSubmapOfBy :: Ord k => (a -> b -> Bool) -> Map k a -> Map k b -> Bool

    hashmap Data.HashMap

    The expression (isSubmapOfBy f m1 m2) returns True if all keys in m1 are in m2, and when f returns True when applied to their respective values.

  5. type EDNMap = Map TaggedValue TaggedValue

    hedn Data.EDN

    No documentation available.

  6. mkMap :: Foldable f => f (TaggedValue, TaggedValue) -> Value

    hedn Data.EDN

    No documentation available.

  7. withMap :: (EDNMap -> Parser a) -> Value -> Parser a

    hedn Data.EDN

    No documentation available.

  8. type EDNMap = Map TaggedValue TaggedValue

    hedn Data.EDN.AST.Types.Value

    No documentation available.

  9. mkMap :: Foldable f => f (TaggedValue, TaggedValue) -> Value

    hedn Data.EDN.AST.Types.Value

    No documentation available.

  10. withMap :: (EDNMap -> Parser a) -> Value -> Parser a

    hedn Data.EDN.Class

    No documentation available.

Page 1178 of many | Previous | Next