Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Inductive GenericTuple : (list Type) -> Type :=
- | t_cons : forall (ts:list Type) (T:Type), T -> GenericTuple ts -> GenericTuple (T::ts)
- | t_nil : GenericTuple nil.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement