Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
PatchIntMap :: IntMap (Maybe a) -> PatchIntMap apatch Data.Patch.IntMap No documentation available.
patchIntMapNewElements :: PatchIntMap a -> [a]patch Data.Patch.IntMap Extract all as inserted/updated by the given PatchIntMap a.
patchIntMapNewElementsMap :: PatchIntMap a -> IntMap apatch Data.Patch.IntMap Convert the given PatchIntMap a into an IntMap a with all the inserts/updates in the given patch.
-
patch Data.Patch.IntMap 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).
unPatchIntMap :: PatchIntMap a -> IntMap (Maybe a)patch Data.Patch.IntMap No documentation available.
-
patch Data.Patch.Map A set of changes to a Map. Any element may be inserted/updated or deleted. Insertions are represented as values wrapped in Just, while deletions are represented as Nothings
PatchMap :: Map k (Maybe v) -> PatchMap k vpatch Data.Patch.Map No documentation available.
patchMapNewElements :: PatchMap k v -> [v]patch Data.Patch.Map Returns all the new elements that will be added to the Map
patchMapNewElementsMap :: PatchMap k v -> Map k vpatch Data.Patch.Map Returns all the new elements that will be added to the Map
unPatchMap :: PatchMap k v -> Map k (Maybe v)patch Data.Patch.Map No documentation available.