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.
isProperSubmapOfBy :: (a -> b -> Bool) -> EnumMap k a -> EnumMap k b -> Boolenummapset Data.EnumMap.Strict No documentation available.
isSubmapOf :: Eq a => EnumMap k a -> EnumMap k a -> Boolenummapset Data.EnumMap.Strict No documentation available.
isSubmapOfBy :: (a -> b -> Bool) -> EnumMap k a -> EnumMap k b -> Boolenummapset Data.EnumMap.Strict No documentation available.
module Data.GenValidity.
IntMap No documentation available.
genIntMapOf :: Gen (Int, v) -> Gen (IntMap v)genvalidity-containers Data.GenValidity.IntMap No documentation available.
shrinkIntMapOf :: ((Int, v) -> [(Int, v)]) -> IntMap v -> [IntMap v]genvalidity-containers Data.GenValidity.IntMap No documentation available.
genMapOf :: Ord k => Gen (k, v) -> Gen (Map k v)genvalidity-containers Data.GenValidity.Map No documentation available.
shrinkMapOf :: Ord k => ((k, v) -> [(k, v)]) -> Map k v -> [Map k v]genvalidity-containers Data.GenValidity.Map No documentation available.
amap :: (a -> b) -> Array i a -> Array i bghc-internal GHC.Internal.Arr No documentation available.
ixmap :: (Ix i, Ix j) => (i, i) -> (i -> j) -> Array j e -> Array i eghc-internal GHC.Internal.Arr ixmap allows for transformations on array indices. It may be thought of as providing function composition on the right with the mapping that the original array embodies. A similar transformation of array values may be achieved using fmap from the Array instance of the Functor class.