Hoogle Search
Within LTS Haskell 24.5 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
type
IxGetter i s a = Optic' A_Getter WithIx i s aoptics-core Optics.IxGetter Type synonym for an indexed getter.
-
An IxLens is an indexed version of a Lens. See the "Indexed optics" section of the overview documentation in the Optics module of the main optics package for more details on indexed optics.
type
IxLens i s t a b = Optic A_Lens WithIx i s t a boptics-core Optics.IxLens Type synonym for a type-modifying indexed lens.
type
IxLens' i s a = Optic' A_Lens WithIx i s aoptics-core Optics.IxLens Type synonym for a type-preserving indexed lens.
type
IxLensVL i s t a b = forall (f :: Type -> Type) . Functor f => i -> a -> f b -> s -> f toptics-core Optics.IxLens Type synonym for a type-modifying van Laarhoven indexed lens.
type
IxLensVL' i s a = IxLensVL i s s a aoptics-core Optics.IxLens Type synonym for a type-preserving van Laarhoven indexed lens.
-
An IxSetter is an indexed version of a Setter. See the "Indexed optics" section of the overview documentation in the Optics module of the main optics package for more details on indexed optics.
type
IxSetter i s t a b = Optic A_Setter WithIx i s t a boptics-core Optics.IxSetter Type synonym for a type-modifying indexed setter.
type
IxSetter' i s a = Optic' A_Setter WithIx i s aoptics-core Optics.IxSetter Type synonym for a type-preserving indexed setter.
-
An IxTraversal is an indexed version of a Traversal. See the "Indexed optics" section of the overview documentation in the Optics module of the main optics package for more details on indexed optics.