Idris2/libs/contrib/Syntax/WithProof.idr
2021-01-16 14:18:34 +00:00

10 lines
208 B
Idris

module Syntax.WithProof
prefix 10 @@
||| Until Idris2 supports the 'with (...) proof p' construct, here's a
||| poor-man's replacement.
public export
(@@) : (t : a) -> (u : a ** t = u)
(@@) x = (x ** Refl)