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.
(** * Identity profunctor *)
[Loading ML file number_string_notation_plugin.cmxs (using legacy method) ... done]
Set Universe Polymorphism. Set Implicit Arguments. Generalizable All Variables. Set Asymmetric Patterns. Local Open Scope profunctor_scope. Section identity. (** Quoting nCatLab: In particular the identity profunctor [Id : C โ‡ธ C] is represented by the identity functor and hence is given by the hom-functor [C(โˆ’,โˆ’) : Cแต’แต– ร— C โ†’ Set]. *) Definition identity `{Funext} (C : PreCategory) : C -|-> C := hom_functor C. End identity. Module Export ProfunctorIdentityNotations. Notation "1" := (identity _) : profunctor_scope. End ProfunctorIdentityNotations.