⚠ You are viewing the Cubical library. Back to Bedrock
Bedrock
English · 中文
Modules
  • Example.Doubling
  • Example.Naturals
  • HelloWorld
{-# OPTIONS --erased-cubical --safe --no-sized-types --no-guardedness #-}

module Agda.Builtin.Cubical.Path where

  open import Agda.Primitive.Cubical using (PathP) public


  infix 4 _≡_

  -- We have a variable name in `(λ i → A)` as a hint for case
  -- splitting.
  _≡_ : ∀ {ℓ} {A : Set ℓ} → A → A → Set ℓ
  _≡_ {A = A} = PathP (λ i → A)

  {-# BUILTIN PATH         _≡_     #-}
Rendered with a generator adapted from the 1lab (AGPL-3.0). · Source
© 2026 choukh (choukyuhei@gmail.com) · content licensed CC BY-NC-SA 4.0