Denotational Semantics in Agda
Data.Unit.Base
Initializing search
    pdmosses/xds-agda
    • About
    • Meta-notation
    • ULC
    • PCF
    • Scheme
    pdmosses/xds-agda
    • About
    • Meta-notation
      • Untyped λ-calculus
      • ULC.All
      • ULC.Variables
      • ULC.Terms
      • ULC.Domains
      • ULC.Environments
      • ULC.Semantics
      • ULC.Checks
      • PCF (Plotkin 1977)
      • PCF.All
      • PCF.Domain Notation
      • PCF.Types
      • PCF.Constants
      • PCF.Variables
      • PCF.Terms
      • PCF.Environments
      • PCF.Checks
      • Core Scheme (R5RS)
      • Scheme.All
      • Scheme.Domain Notation
      • Scheme.Abstract Syntax
      • Scheme.Domain Equations
      • Scheme.Auxiliary Functions
      • Scheme.Semantic Functions

    Data.Unit.Base

    ------------------------------------------------------------------------
    -- The Agda standard library
    --
    -- The unit type and the total relation on unit
    ------------------------------------------------------------------------
    
    {-# OPTIONS --cubical-compatible --safe #-}
    
    module Data.Unit.Base where
    
    ------------------------------------------------------------------------
    -- A unit type defined as a record type
    
    -- Note that by default the unit type is not universe polymorphic as it
    -- often results in unsolved metas. See `Data.Unit.Polymorphic` for a
    -- universe polymorphic variant.
    
    -- Note also that the name of this type is "\top", not T.
    
    open import Agda.Builtin.Unit public
      using (⊤; tt)
    
    Made with Material for MkDocs