Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
mapCursorSelection :: MapCursor kc vc k v -> Intcursor Cursor.Simple.Map No documentation available.
mapCursorToggleSelected :: MapCursor k v -> MapCursor k vcursor Cursor.Simple.Map No documentation available.
mapMapCursor :: (k -> l) -> (v -> w) -> MapCursor k v -> MapCursor l wcursor Cursor.Simple.Map No documentation available.
mapKeyValueCursor :: (k -> l) -> (v -> w) -> KeyValueCursor k v -> KeyValueCursor l wcursor Cursor.Simple.Map.KeyValue No documentation available.
mapTreeCursor :: (a -> b) -> TreeCursor a -> TreeCursor bcursor Cursor.Simple.Tree No documentation available.
mapTreeCursor :: (a -> c) -> (b -> d) -> TreeCursor a b -> TreeCursor c dcursor Cursor.Tree.Base No documentation available.
-
data-effects-core Data.Effect.OpenUnion No documentation available.
-
data-reify Data.Reify No documentation available.
mapEDNS :: EDNSheader -> (EDNS -> a) -> a -> adns Network.DNS.Types Return the output of a function applied to the EDNS pseudo-header if EDNS is enabled, otherwise return a default value.
mapU :: (u -> u') -> DUALTree d u a l -> DUALTree d u' a ldual-tree Data.Tree.DUAL Map a function over all the u annotations in a DUAL-tree. The function must be a monoid homomorphism, and must commute with the action of d on u. That is, to use mapU f safely it must be the case that
f mempty == mempty
f (u1 <> u2) == f u1 <> f u2
f (act d u) == act d (f u)