(** * Unicode notations for categories *)Local Set Warnings "-notation-overridden". Require Export Category.Notations. Local Set Warnings "notation-overridden". Require Import Basics.Utf8. Infix "∘" := compose : morphism_scope. Notation "m ⁻¹" := (morphism_inverse m) : morphism_scope. Infix "≅" := Isomorphic : category_scope. Notation "x ↠ y" := (Epimorphism x y). Notation "x ↪ y" := (Monomorphism x y). (** It would be nice to put [, format "C 'ᵒᵖ'"] here, but that makes this notation unparseable. *) Notation "C 'ᵒᵖ'" := (opposite C) : category_scope. Notation "∀ x .. y , P" := (forall x, .. (forall y, P) ..). Notation "∀ x .. y , P" := (forall x, .. (forall y, P) ..) : type_scope. Notation "∀ x .. y , P" := (pi (fun x => .. (pi (fun y => P)) .. )) : category_scope.