Built with Alectryon, running Coq+SerAPI v8.18.0+0.18.3. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus. On Mac, use instead of Ctrl.
Require Export HoTT.Basics.Utf8.
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
(** * Just enough Utf8/unicode for the Classes library to build, without depending on everything that HoTT.Utf8 depends on. *) (* Logic *) Notation "∀ x .. y , P" := (forall x, .. (forall y, P) ..) : type_scope. Notation "∃ x .. y , P" := (exists x, .. (exists 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) ..).