Functors from the category of the ordered set ℕ
#
In this file, we provide a constructor Functor.ofSequence
for functors ℕ ⥤ C
which takes as an input a sequence
of morphisms f : X n ⟶ X (n + 1)
for all n : ℕ
.
We also provide a constructor NatTrans.ofSequence
for natural
transformations between functors ℕ ⥤ C
which allows to check
the naturality condition only for morphisms n ⟶ n + 1
.
The duals of the above for functors ℕᵒᵖ ⥤ C
are given by Functor.ofOpSequence
and
NatTrans.ofOpSequence
.
The functor ℕ ⥤ C
constructed from a sequence of
morphisms f : X n ⟶ X (n + 1)
for all n : ℕ
.
Equations
Instances For
Constructor for natural transformations F ⟶ G
in ℕ ⥤ C
which takes as inputs
the morphisms F.obj n ⟶ G.obj n
for all n : ℕ
and the naturality condition only
for morphisms of the form n ⟶ n + 1
.
Equations
Instances For
Constructor for natural transformations F ⟶ G
in ℕᵒᵖ ⥤ C
which takes as inputs
the morphisms F.obj ⟨n⟩ ⟶ G.obj ⟨n⟩
for all n : ℕ
and the naturality condition only
for morphisms of the form n ⟶ n + 1
.