Skip to content
Snippets Groups Projects
Commit 60ad150d authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Merge branch 'forall-notation' into 'master'

notation for forall

See merge request iris/stdpp!152
parents ea934fb9 bfb8f04e
No related branches found
No related tags found
No related merge requests found
......@@ -190,6 +190,11 @@ embedded logics. *)
Notation "'True'" := True (format "True") : 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 *)
(** Introduce some Haskell style like notations. *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment