aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Unicode
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Unicode')
-rw-r--r--theories/Unicode/Utf8.v17
-rw-r--r--theories/Unicode/Utf8_core.v2
2 files changed, 3 insertions, 16 deletions
diff --git a/theories/Unicode/Utf8.v b/theories/Unicode/Utf8.v
index 7f35088bc..4d44dd85c 100644
--- a/theories/Unicode/Utf8.v
+++ b/theories/Unicode/Utf8.v
@@ -7,22 +7,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* Logic *)
-Notation "∀ x .. y , P" := (forall x, .. (forall y, P) ..)
- (at level 200, x binder, y binder, right associativity) : type_scope.
-Notation "∃ x .. y , P" := (exists x, .. (exists y, P) ..)
- (at level 200, x binder, y binder, right associativity) : type_scope.
-
-Notation "x ∨ y" := (x \/ y) (at level 85, right associativity) : type_scope.
-Notation "x ∧ y" := (x /\ y) (at level 80, right associativity) : type_scope.
-Notation "x → y" := (x -> y) (at level 90, right associativity): type_scope.
-Notation "x ↔ y" := (x <-> y) (at level 95, no associativity): type_scope.
-Notation "¬ x" := (~x) (at level 75, right associativity) : type_scope.
-Notation "x ≠ y" := (x <> y) (at level 70) : type_scope.
-
-(* Abstraction *)
-Notation "'λ' x .. y , t" := (fun x => .. (fun y => t) ..)
- (at level 200, x binder, y binder, right associativity).
+Require Import Utf8_core.
(* Arithmetic *)
Notation "x ≤ y" := (le x y) (at level 70, no associativity).
diff --git a/theories/Unicode/Utf8_core.v b/theories/Unicode/Utf8_core.v
index a42de3abd..31724b3ca 100644
--- a/theories/Unicode/Utf8_core.v
+++ b/theories/Unicode/Utf8_core.v
@@ -7,6 +7,8 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
+
+
(* Logic *)
Notation "∀ x .. y , P" := (forall x, .. (forall y, P) ..)
(at level 200, x binder, y binder, right associativity) : type_scope.