Copyright | (c) 2022 Composewell Technologies |
---|---|
License | BSD-3-Clause |
Maintainer | streamly@composewell.com |
Stability | experimental |
Portability | GHC |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Documentation
mapAlterF :: Functor g => (Maybe a -> g (Maybe a)) -> Key f -> f a -> g (f a) Source #
mapLookup :: Key f -> f a -> Maybe a Source #
mapInsert :: Key f -> a -> f a -> f a Source #
mapDelete :: Key f -> f a -> f a Source #
mapUnion :: f a -> f a -> f a Source #
mapNull :: f a -> Bool Source #
mapTraverseWithKey :: Applicative t => (Key f -> a -> t b) -> f a -> t (f b) Source #