Hoogle Search
Within LTS Haskell 24.39 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapMonotonic :: (Integer -> Integer) -> IntegerInterval -> IntegerIntervaldata-interval Data.IntegerInterval mapMonotonic f i is the image of i under f, where f must be a strict monotone function.
mapMonotonic :: (Ord a, Ord b) => (a -> b) -> Interval a -> Interval bdata-interval Data.Interval mapMonotonic f i is the image of i under f, where f must be a strict monotone function, preserving negative and positive infinities.
mapKeysMonotonic :: (Ord k1, Ord k2) => (k1 -> k2) -> IntervalMap k1 a -> IntervalMap k2 adata-interval Data.IntervalMap.Lazy mapKeysMonotonic f s is the map obtained by applying f to each key of s. f must be strictly monotonic. That is, for any values x and y, if x < y then f x < f y.
mapKeysMonotonic :: (Ord k1, Ord k2) => (k1 -> k2) -> IntervalMap k1 a -> IntervalMap k2 adata-interval Data.IntervalMap.Strict mapKeysMonotonic f s is the map obtained by applying f to each key of s. f must be strictly monotonic. That is, for any values x and y, if x < y then f x < f y.
mapDecision :: (a -> b) -> (b -> a) -> Decision a -> Decision bdecidable Data.Type.Predicate Map over the value inside a Decision.
mapRefuted :: (a -> b) -> Refuted b -> Refuted adecidable Data.Type.Predicate Change the target of a Refuted with a contravariant mapping function.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n). The function mapAccumLWithKey threads an accumulating argument throught the map in ascending order of keys.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n). The function mapAccumRWithKey threads an accumulating argument through the map in descending order of keys.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n). Map keys/values and separate the Left and Right results.
-
dependent-monoidal-map Data.Dependent.Map.Monoidal O(n*log n). mapKeysWith c f s is the map obtained by applying f to each key of s. The size of the result may be smaller if f maps two or more distinct keys to the same new key. In this case the associated values will be combined using c.