packages feed

Agda-2.5.2: src/data/lib/prim/Agda/Builtin/Coinduction.agda

{-# OPTIONS --without-K #-}

module Agda.Builtin.Coinduction where

infix 1000 ♯_

postulate
  ∞  : ∀ {a} (A : Set a) → Set a
  ♯_ : ∀ {a} {A : Set a} → A → ∞ A
  ♭  : ∀ {a} {A : Set a} → ∞ A → A

{-# BUILTIN INFINITY ∞  #-}
{-# BUILTIN SHARP    ♯_ #-}
{-# BUILTIN FLAT     ♭  #-}