Hoogle Search
Within LTS Haskell 24.35 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
hashMapValues :: (Hashable key, Eq key) => HashMap key value -> Unfoldr key -> Unfoldr valuedeferred-folds DeferredFolds.Unfoldr Values of a hash-map by their keys
intMapAssocs :: IntMap value -> Unfoldr (Int, value)deferred-folds DeferredFolds.Unfoldr Associations of an intmap
type family
ConcatMap (f :: a ~> [b]) (xs :: [a]) :: [b]defun-core DeFun.List List concatMap
data
ConcatMapSym (f :: FunKind a ~> [b] [a] ~> [b])defun-core DeFun.List No documentation available.
data
ConcatMapSym1 (f :: a ~> [b]) (xs :: FunKind [a] [b])defun-core DeFun.List No documentation available.
PersistMap :: [(Text, PersistValue)] -> PersistValueesqueleto Database.Esqueleto No documentation available.
PersistMap :: [(Text, PersistValue)] -> PersistValueesqueleto Database.Esqueleto.Experimental No documentation available.
PersistMap :: [(Text, PersistValue)] -> PersistValueesqueleto Database.Esqueleto.Legacy No documentation available.
dimap :: Profunctor p => (a -> b) -> (c -> d) -> p b c -> p a dessence-of-live-coding LiveCoding Map over both arguments at the same time.
dimap f g ≡ lmap f . rmap g
lmap :: Profunctor p => (a -> b) -> p b c -> p a cessence-of-live-coding LiveCoding Map the first argument contravariantly.
lmap f ≡ dimap f id