lens-1.7.1: Lenses, Folds and Traversals

Portabilityrank 2 types, MPTCs
Stabilityexperimental
MaintainerEdward Kmett <ekmett@gmail.com>
Safe HaskellSafe-Infered

Control.Lens.IndexedGetter

Contents

Description

 

Synopsis

Indexed Folds

type IndexedGetter i a c = forall k f b d. (Indexed i k, Gettable f) => k (c -> f d) (a -> f b)Source

Every IndexedGetter is a valid IndexedFold and Getter.

type IndexedGetting i m a b c d = Index i (c -> Accessor m d) (a -> Accessor m b)Source

Used to consume an IndexedFold.