⚠ 您正在浏览 Cubical 库。 返回 Bedrock
Bedrock
English · 中文
模块
  • Example.Doubling
  • Example.Naturals
  • HelloWorld
{-# OPTIONS --cubical-compatible --safe --no-sized-types --no-guardedness --level-universe #-}

module Agda.Builtin.Sigma where

open import Agda.Primitive

record Σ {a b} (A : Set a) (B : A → Set b) : Set (a ⊔ b) where
  constructor _,_
  field
    fst : A
    snd : B fst

open Σ public

infixr 4 _,_

{-# BUILTIN SIGMA Σ #-}
Rendered with a generator adapted from the 1lab (AGPL-3.0). · 源码
© 2026 choukh (choukyuhei@gmail.com) · 内容以 CC BY-NC-SA 4.0 许可