← Back

Modules

Midnight

  • Passport.Channels
  • Passport.Compiler
  • Passport.Core
  • Passport.FMTerm
  • Passport.Properties
  • Passport.Semantics

Passport

  • Passport
1234567891011121314151617181920
------------------------------------------------------------------------
-- The Agda standard library
--
-- Booleans
------------------------------------------------------------------------
 
{-# OPTIONS --cubical-compatible --safe #-}
 
module Data.Bool where
 
------------------------------------------------------------------------
-- The boolean type and some operations
 
open import Data.Bool.Base public
 
------------------------------------------------------------------------
-- Publicly re-export queries
 
open import Data.Bool.Properties public
using (T?; _≟_; _≤?_; _<?_)