Sigma β
, also denoted Σ a : α, β a
or (a : α) × β a
, is the type of dependent pairs
whose first component is a : α
and whose second component is b : β a
(so the type of the second component can depend on the value of the first component).
It is sometimes known as the dependent sum type, since it is the type level version
of an indexed summation.
Constructor
Sigma.mk.{u, v} |
Constructor for a dependent pair. If |
Fields
fst | : | α |
The first component of a dependent pair. If | ||
snd | : | β self.fst |
The second component of a dependent pair. If |