I know of two ways to define the finite number type. Is there words to distinguish between the two?

前端 未结 0 1844
野趣味
野趣味 2021-02-02 14:48

I know of two ways to define the finite number type:

Inductive fin (n : nat) :=
  | O_fin : fin (S O)
  | S_fin : forall n : nat, fin n -> fin (S n).

Definiti         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题