Idris2Doc : Data.Functor.Indexed

Data.Functor.Indexed

(source)
Functors able to read some separate data, the "index".

They are expected to obey the laws
  imap g . imap f = imap (\i => g i . f i)
and
  imap (const id) = id

The abbreviation "Ind" could be taken to stand for "Indexed", but
also for "Independent", to contrast it with the "Dependent"
versions elsewhere in the library.

Definitions

interfaceIndFunctor : Type-> (Type->Type) ->Type
Parameters: i, f
Constraints: Functor f
Methods:
imap : (i->x->y) ->fx->fy

Implementations:
IndFunctork (Pairk)
IndFunctor () Maybe
IndFunctorNatList
IndFunctor (Fink) (Vectk)
Functorm=>IndFunctora (Kleislima)
imap : IndFunctorif=> (i->x->y) ->fx->fy
Visibility: public export
(<|$>) : IndFunctorif=> (i->x->y) ->fx->fy
Visibility: export
Fixity Declaration: infixr operator, level 4