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.
-
An IxAffineFold is an indexed version of an AffineFold. 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
IxAffineFold i s a = Optic' An_AffineFold WithIx i s aoptics-core Optics.IxAffineFold Type synonym for an indexed affine fold.
module Optics.
IxAffineTraversal An IxAffineTraversal is an indexed version of an AffineTraversal. 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
IxAffineTraversal i s t a b = Optic An_AffineTraversal WithIx i s t a boptics-core Optics.IxAffineTraversal Type synonym for a type-modifying indexed affine traversal.
type
IxAffineTraversal' i s a = Optic' An_AffineTraversal WithIx i s aoptics-core Optics.IxAffineTraversal Type synonym for a type-preserving indexed affine traversal.
-
optics-core Optics.IxAffineTraversal Type synonym for a type-modifying van Laarhoven indexed affine traversal. Note: this isn't exactly van Laarhoven representation as there is no Pointed class (which would be a superclass of Applicative that contains pure but not <*>). You can interpret the first argument as a dictionary of Pointed that supplies the point function (i.e. the implementation of pure).
type
IxAffineTraversalVL' i s a = IxAffineTraversalVL i s s a aoptics-core Optics.IxAffineTraversal Type synonym for a type-preserving van Laarhoven indexed affine traversal.
-
An IxFold is an indexed version of a Fold. 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
IxFold i s a = Optic' A_Fold WithIx i s aoptics-core Optics.IxFold Type synonym for an indexed fold.
-
An IxGetter is an indexed version of a Getter. See the "Indexed optics" section of the overview documentation in the Optics module of the main optics package for more details on indexed optics.