What are sized types in Agda? I've tried to read the paper about MiniAgda, but failed to proceed due to the following points:
- Why are data types generic over their size? As far as I know the size is the depth of the tree of induction.
- Why are data types covariant over their size, i.e. i <= j -> T_i <= T_j ?
- What do the
>
and#
patterns mean?