You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Please use the new names as continuing support for the old names is
113
+
-- not guaranteed.
114
+
115
+
-- Version 2.0
116
+
117
+
recordReveal_·_is_ {A :Set a} {B : A →Set b}
118
+
(f : (x : A) → B x) (x : A) (y : B x) :
119
+
Set (a ⊔ b) where
120
+
constructor[_]
121
+
field eq : f x ≡ y
122
+
123
+
inspect :∀ {A :Set a} {B : A →Set b}
124
+
(f : (x : A) → B x) (x : A) → Reveal f · x is f x
125
+
inspect f x = [ refl ]
126
+
127
+
{-# WARNING_ON_USAGE Reveal_·_is_
128
+
"Warning: Reveal_·_is_ was deprecated in v2.0.
129
+
Please use new `with ... in` syntax described at https://agda.readthedocs.io/en/v2.6.3/language/with-abstraction.html#with-abstraction-equality instead."
130
+
#-}
131
+
{-# WARNING_ON_USAGE inspect
132
+
"Warning: inspect was deprecated in v2.0.
133
+
Please use new `with ... in` syntax described at https://agda.readthedocs.io/en/v2.6.3/language/with-abstraction.html#with-abstraction-equality instead."
0 commit comments