Large identity types
Content created by Fredrik Bakke and Egbert Rijke.
Created on 2023-03-23.
Last modified on 2023-06-10.
module foundation.large-identity-types where
Imports
open import foundation.universe-levels
Definition
module _ {A : UUω} where data Idω (x : A) : A → UUω where reflω : Idω x x _=ω_ : A → A → UUω (a =ω b) = Idω a b
Recent changes
- 2023-06-10. Egbert Rijke and Fredrik Bakke. Cleaning up synthetic homotopy theory (#649).
- 2023-06-08. Fredrik Bakke. Remove empty
foundation
modules and replace them by their core counterparts (#644). - 2023-06-07. Fredrik Bakke. Move public imports before “Imports” block (#642).
- 2023-03-23. Fredrik Bakke. Some additions to and refactoring large types (#529).