1234567891011121314151617 |
- {-# OPTIONS --without-K #-}
- ------------------------------------------------------------------------
- -- Universe levels
- ------------------------------------------------------------------------
- module Common.Level where
- open import Agda.Primitive public using (Level; lzero; lsuc; _⊔_)
- -- Lifting.
- record Lift {a ℓ} (A : Set a) : Set (a ⊔ ℓ) where
- constructor lift
- field lower : A
- open Lift public
|