Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
unsafeMapMonotonic :: forall k p q v w . (k -> p -> v -> (q, w)) -> OrdPSQ k p v -> OrdPSQ k q wpsqueues Data.OrdPSQ O(n) Maps a function over the values and priorities of the queue. The function f must be monotonic with respect to the priorities. I.e. if x < y, then fst (f k x v) < fst (f k y v). The precondition is not checked. If f is not monotonic, then the result will be invalid.
-
No documentation available.
-
reflex Data.AppendMap Deprecated: Use MonoidalMap instead
pattern
AppendMap :: Map k v -> MonoidalMap k vreflex Data.AppendMap Deprecated: Use MonoidalMap instead
_unAppendMap :: MonoidalMap k v -> Map k vreflex Data.AppendMap Deprecated: Use getMonoidalMap instead
-
No documentation available.
-
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.
-
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.
PatchIntMap :: IntMap (Maybe a) -> PatchIntMap areflex Data.FastMutableIntMap No documentation available.
patchIntMapNewElements :: PatchIntMap a -> [a]reflex Data.FastMutableIntMap Extract all as inserted/updated by the given PatchIntMap a.