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.
foldMapOf :: Getting r s a -> (a -> r) -> s -> rmicrolens Lens.Micro No documentation available.
foldMapOf :: Getting r s a -> (a -> r) -> s -> rmicrolens Lens.Micro.Internal No documentation available.
dimap :: Profunctor p => (a -> b) -> (c -> d) -> p b c -> p a dprofunctors Data.Profunctor 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 cprofunctors Data.Profunctor Map the first argument contravariantly.
lmap f ≡ dimap f id
rmap :: Profunctor p => (b -> c) -> p a b -> p a cprofunctors Data.Profunctor Map the second argument covariantly.
rmap ≡ dimap id
newtype
CofreeMapping (p :: Type -> Type -> Type) a bprofunctors Data.Profunctor.Mapping No documentation available.
-
profunctors Data.Profunctor.Mapping No documentation available.
data
FreeMapping (p :: Type -> Type -> Type) a bprofunctors Data.Profunctor.Mapping FreeMapping -| CofreeMapping
-
profunctors Data.Profunctor.Mapping No documentation available.
closedMapping :: Mapping p => p a b -> p (x -> a) (x -> b)profunctors Data.Profunctor.Mapping No documentation available.