Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. enumMapToIntMap :: EnumMap k a -> IntMap a

    enummapset Data.EnumMap.Lazy

    Unwrap IntMap.

  2. enumMapToIntMap :: EnumMap k a -> IntMap a

    enummapset Data.EnumMap.Strict

    Unwrap IntMap.

  3. genIntMapOf :: Gen (Int, v) -> Gen (IntMap v)

    genvalidity-containers Data.GenValidity.IntMap

    No documentation available.

  4. shrinkIntMapOf :: ((Int, v) -> [(Int, v)]) -> IntMap v -> [IntMap v]

    genvalidity-containers Data.GenValidity.IntMap

    No documentation available.

  5. module Data.FastMutableIntMap

    No documentation available.

  6. data FastMutableIntMap a

    reflex Data.FastMutableIntMap

    A FastMutableIntMap holds a map of values of type a and allows low-overhead modifications via IO. Operations on FastMutableIntMap run in IO.

  7. newtype PatchIntMap a

    reflex Data.FastMutableIntMap

    Patch for IntMap which represents insertion or deletion of keys in the mapping. Internally represented by 'IntMap (Maybe a)', where Just means insert/update and Nothing means delete.

  8. PatchIntMap :: IntMap (Maybe a) -> PatchIntMap a

    reflex Data.FastMutableIntMap

    No documentation available.

  9. patchIntMapNewElements :: PatchIntMap a -> [a]

    reflex Data.FastMutableIntMap

    Extract all as inserted/updated by the given PatchIntMap a.

  10. patchIntMapNewElementsMap :: PatchIntMap a -> IntMap a

    reflex Data.FastMutableIntMap

    Convert the given PatchIntMap a into an IntMap a with all the inserts/updates in the given patch.

Page 5 of many | Previous | Next