Idris2Doc : Data.Functor.Dependent

Data.Functor.Dependent

(source)
Functors with type depending on some extra data, the "index"

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

Definitions

interfaceDepFunctor : (i : Type) -> ((i->Type) ->Type) ->Type
Parameters: i, t
Methods:
dmap : ((x : i) ->ux->vx) ->tu->tv

Implementations:
DepFunctori (DPairi)
DepFunctork (SortedDMapk)
dmap : DepFunctorit=> ((x : i) ->ux->vx) ->tu->tv
Visibility: public export