← Back

Modules

Leios

  • Linear

Network

  • BasicBroadcast
1234567891011121314151617181920
------------------------------------------------------------------------
-- The Agda standard library
--
-- The unit type, Level-monomorphic version
------------------------------------------------------------------------
 
{-# OPTIONS --cubical-compatible --safe #-}
 
module Data.Unit where
 
------------------------------------------------------------------------
-- Re-export contents of base module
 
open import Data.Unit.Base public
 
------------------------------------------------------------------------
-- Re-export query operations
 
open import Data.Unit.Properties public
using (_≟_)