Skip to content
Snippets Groups Projects
Commit bfb8f04e authored by Gregory Malecha's avatar Gregory Malecha Committed by Robbert Krebbers
Browse files

notation for forall

parent ea934fb9
Branches
Tags
No related merge requests found
...@@ -190,6 +190,11 @@ embedded logics. *) ...@@ -190,6 +190,11 @@ embedded logics. *)
Notation "'True'" := True (format "True") : type_scope. Notation "'True'" := True (format "True") : type_scope.
Notation "'False'" := False (format "False") : type_scope. Notation "'False'" := False (format "False") : type_scope.
(** Change [forall] into a notation in order to enable overloading. *)
Notation "'forall' x .. y , P" := (forall x, .. (forall y, P%type) ..)
(at level 200, x binder, y binder, right associativity,
only parsing) : type_scope.
(** * Equality *) (** * Equality *)
(** Introduce some Haskell style like notations. *) (** Introduce some Haskell style like notations. *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment