module reflection.abstractions where
open import foundation.universe-levels open import primitives.strings
The Abs type represents a lambda abstraction.
Abs
data Abs {l} (A : UU l) : UU l where abs : String → A → Abs A {-# BUILTIN ABS Abs #-} {-# BUILTIN ABSABS abs #-}