Library HoTT.Utf8Minimal
Just enough Utf8/unicode for the Classes library to build, without depending on everything that HoTT.Utf8 depends on.
(* Logic *)
Notation "∀ x .. y , P" := (∀ x, .. (∀ y, P) ..) : type_scope.
Notation "∃ x .. y , P" := (∃ x, .. (∃ y, P) ..) : type_scope.
Notation "x ∧ y" := (x ∧ y) : type_scope.
Notation "x → y" := (x → y) : type_scope.
Notation "x ↔ y" := (x ↔ y) : type_scope.
(*Notation "¬ x" := (not x) : type_scope.*)
(*Notation "x ≠ y" := (x <> y) : type_scope.*)
(* Abstraction *)
Notation "'λ' x .. y , t" := (fun x ⇒ .. (fun y ⇒ t) ..).