← Back

Modules

Leios

  • Linear

Network

  • BasicBroadcast
12345678910111213141516171819
------------------------------------------------------------------------
-- The Agda standard library
--
-- Universes
------------------------------------------------------------------------
 
{-# OPTIONS --cubical-compatible --safe #-}
 
module Data.Universe where
 
open import Level
 
------------------------------------------------------------------------
-- Definition
 
record Universe u e : Set (suc (u ⊔ e)) where
field
U : Set u -- Codes.
El : U → Set e -- Decoding function.