Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚类型层次结构在 Agda 中是如何工作的。
假设我定义了一个集合类型 X:
X : Set
然后继续构造一个归纳类型
data Y : X -> Set where
是什么类型的X -> Set?是设置还是类型?
X -> Set
谢谢!