| Portability | non-portable | 
|---|---|
| Stability | experimental | 
| Maintainer | Edward Kmett <ekmett@gmail.com> | 
| Safe Haskell | Trustworthy | 
Control.Lens.Internal.Indexed
Description
Internal implementation details for Indexed lens-likes
- newtype  Indexed i a b = Indexed {
- runIndexed :: i -> a -> b
 
 - class (Choice p, Corepresentable p, Comonad (Corep p), Traversable (Corep p), Strong p, Representable p, Monad (Rep p), MonadFix (Rep p), Distributive (Rep p), ArrowLoop p, ArrowApply p, ArrowChoice p) => Conjoined p where
 - class Conjoined p => Indexable i p  where
- indexed :: p a b -> i -> a -> b
 
 - newtype  Indexing f a = Indexing {
- runIndexing :: Int -> (Int, f a)
 
 - indexing :: Indexable Int p => ((a -> Indexing f b) -> s -> Indexing f t) -> p a (f b) -> s -> f t
 - newtype  Indexing64 f a = Indexing64 {
- runIndexing64 :: Int64 -> (Int64, f a)
 
 - indexing64 :: Indexable Int64 p => ((a -> Indexing64 f b) -> s -> Indexing64 f t) -> p a (f b) -> s -> f t
 
An Indexed Profunctor
A function with access to a index. This constructor may be useful when you need to store
 an Indexable in a container to avoid ImpredicativeTypes.
index :: Indexed i a b -> i -> a -> b
Constructors
| Indexed | |
Fields 
  | |
Instances
| ~ * i j => Indexable i (Indexed j) | |
| Arrow (Indexed i) | |
| ArrowChoice (Indexed i) | |
| ArrowApply (Indexed i) | |
| ArrowLoop (Indexed i) | |
| Category (Indexed i) | |
| Profunctor (Indexed i) | |
| Representable (Indexed i) | |
| Corepresentable (Indexed i) | |
| Strong (Indexed i) | |
| Choice (Indexed i) | |
| Conjoined (Indexed i) | |
| Bizarre (Indexed Int) Mafic | |
| Sellable (Indexed i) (Molten i) | |
| Bizarre (Indexed i) (Molten i) | |
| Monad (Indexed i a) | |
| Functor (Indexed i a) | |
| MonadFix (Indexed i a) | |
| Applicative (Indexed i a) | |
| Apply (Indexed i a) | |
| Bind (Indexed i a) | 
Classes
class (Choice p, Corepresentable p, Comonad (Corep p), Traversable (Corep p), Strong p, Representable p, Monad (Rep p), MonadFix (Rep p), Distributive (Rep p), ArrowLoop p, ArrowApply p, ArrowChoice p) => Conjoined p whereSource
This is a Profunctor that is both Corepresentable by f and Representable by g such
 that f is left adjoint to g. From this you can derive a lot of structure due
 to the preservation of limits and colimits.
Methods
distrib :: Functor f => p a b -> p (f a) (f b)Source
Conjoined is strong enough to let us distribute every Conjoined
 Profunctor over every Haskell Functor. This is effectively a
 generalization of fmap.
conjoined :: (p ~ (->) => q (a -> b) r) -> q (p a b) r -> q (p a b) rSource
This permits us to make a decision at an outermost point about whether or not we use an index.
Ideally any use of this function should be done in such a way so that you compute the same answer, but this cannot be enforced at the type level.
class Conjoined p => Indexable i p whereSource
This class permits overloading of function application for things that also admit a notion of a key or index.
Indexing
Applicative composition of  with a State IntFunctor, used
 by indexed.
Constructors
| Indexing | |
Fields 
  | |
Instances
| Functor f => Functor (Indexing f) | |
| Applicative f => Applicative (Indexing f) | |
| Contravariant f => Contravariant (Indexing f) | |
| Apply f => Apply (Indexing f) | 
indexing :: Indexable Int p => ((a -> Indexing f b) -> s -> Indexing f t) -> p a (f b) -> s -> f tSource
Transform a Traversal into an IndexedTraversal or
 a Fold into an IndexedFold, etc.
indexing::Traversals t a b ->IndexedTraversalInts t a bindexing::Prisms t a b ->IndexedTraversalInts t a bindexing::Lenss t a b ->IndexedLensInts t a bindexing::Isos t a b ->IndexedLensInts t a bindexing::Folds a ->IndexedFoldInts aindexing::Getters a ->IndexedGetterInts a
indexing::IndexableIntp =>LensLike(Indexingf) s t a b ->Overloadingp (->) f s t a b
64-bit Indexing
newtype Indexing64 f a Source
Applicative composition of  with a State Int64Functor, used
 by indexed64.
Constructors
| Indexing64 | |
Fields 
  | |
Instances
| Functor f => Functor (Indexing64 f) | |
| Applicative f => Applicative (Indexing64 f) | |
| Contravariant f => Contravariant (Indexing64 f) | |
| Apply f => Apply (Indexing64 f) | 
indexing64 :: Indexable Int64 p => ((a -> Indexing64 f b) -> s -> Indexing64 f t) -> p a (f b) -> s -> f tSource
Transform a Traversal into an IndexedTraversal or
 a Fold into an IndexedFold, etc.
This combinator is like indexing except that it handles large traversals and folds gracefully.
indexing64::Traversals t a b ->IndexedTraversalInt64s t a bindexing64::Prisms t a b ->IndexedTraversalInt64s t a bindexing64::Lenss t a b ->IndexedLensInt64s t a bindexing64::Isos t a b ->IndexedLensInt64s t a bindexing64::Folds a ->IndexedFoldInt64s aindexing64::Getters a ->IndexedGetterInt64s a
indexing64::IndexableInt64p =>LensLike(Indexing64f) s t a b ->Overloadingp (->) f s t a b