← Back

Modules

Midnight

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

Passport

  • Passport
123456789
{-# OPTIONS --cubical-compatible --safe --no-sized-types --no-guardedness --level-universe #-}
 
module Agda.Builtin.Maybe where
 
data Maybe {a} (A : Set a) : Set a where
just : A → Maybe A
nothing : Maybe A
 
{-# BUILTIN MAYBE Maybe #-}