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. PatchIntMap :: IntMap (Maybe a) -> PatchIntMap a

    patch Data.Patch

    No documentation available.

  2. mapIntMapPatchWithKey :: (Int -> a -> b) -> PatchIntMap a -> PatchIntMap b

    patch Data.Patch

    Map a function Int -> a -> b over all as in the given PatchIntMap a (that is, all inserts/updates), producing a PatchIntMap b.

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

    patch Data.Patch

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

  4. patchIntMapNewElementsMap :: PatchIntMap a -> IntMap a

    patch Data.Patch

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

  5. traverseIntMapPatchWithKey :: Applicative f => (Int -> a -> f b) -> PatchIntMap a -> f (PatchIntMap b)

    patch Data.Patch

    Map an effectful function Int -> a -> f b over all as in the given PatchIntMap a (that is, all inserts/updates), producing a f (PatchIntMap b).

  6. unPatchIntMap :: PatchIntMap a -> IntMap (Maybe a)

    patch Data.Patch

    No documentation available.

  7. newtype PatchIntMap a

    patch Data.Patch.IntMap

    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

    patch Data.Patch.IntMap

    No documentation available.

  9. mapIntMapPatchWithKey :: (Int -> a -> b) -> PatchIntMap a -> PatchIntMap b

    patch Data.Patch.IntMap

    Map a function Int -> a -> b over all as in the given PatchIntMap a (that is, all inserts/updates), producing a PatchIntMap b.

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

    patch Data.Patch.IntMap

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

Page 8 of many | Previous | Next