record Graph : {0 b : a -> Type} -> ((x : a) -> b x) -> (x : a) -> b x -> Type
A relation corresponding to the graph of `f`.
.equality : Graph f x y -> f x = y
.equality : Graph f x y -> f x = y
equality : Graph f x y -> f x = y
remember : {0 b : a -> Type} -> (f : ((x : a) -> b x)) -> (x : a) -> Graph f x (f x)
An alternative for 'Syntax.WithProof' that allows to keep the
proof certificate in non-reduced form after nested matching.
Inspired by https://agda.github.io/agda-stdlib/README.Inspect.html