package coq-core
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
On This Page
  
  
  The Coq Proof Assistant -- Core Binaries and Tools
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      coq-8.20.1.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        md5=0cfaa70f569be9494d24c829e6555d46
    
    
  sha512=8ee967c636b67b22a4f34115871d8f9b9114df309afc9ddf5f61275251088c6e21f6cf745811df75554d30f4cebb6682f23eeb2e88b771330c4b60ce3f6bf5e2
    
    
  doc/coq-core.vernac/Prettyp/index.html
Module PrettypSource
This module implements Print/About/Locate commands
Source
val print_context : 
  Environ.env ->
  Evd.evar_map ->
  with_values:Global.indirect_accessor option ->
  int option ->
  'a Lib.library_segment ->
  Pp.tSource
val print_library_leaf : 
  Environ.env ->
  Evd.evar_map ->
  with_values:Global.indirect_accessor option ->
  Names.ModPath.t ->
  Libobject.t ->
  Pp.t optionSource
val print_sec_context : 
  Global.indirect_accessor ->
  Environ.env ->
  Evd.evar_map ->
  Libnames.qualid ->
  Pp.tSource
val print_name : 
  Global.indirect_accessor ->
  Environ.env ->
  Evd.evar_map ->
  Libnames.qualid Constrexpr.or_by_notation ->
  UnivNames.full_name_list option ->
  Pp.tSource
val print_notation : 
  Environ.env ->
  Evd.evar_map ->
  Constrexpr.notation_entry ->
  string ->
  Pp.tSource
val print_abbreviation : 
  Global.indirect_accessor ->
  Environ.env ->
  Evd.evar_map ->
  Names.KerName.t ->
  Pp.tSource
val print_about : 
  Environ.env ->
  Evd.evar_map ->
  Libnames.qualid Constrexpr.or_by_notation ->
  UnivNames.full_name_list option ->
  Pp.tLocate
Source
type 'a locatable_info = {locate : Libnames.qualid -> 'a option;(*Locate the most precise object with the provided name if any.
*)locate_all : Libnames.qualid -> 'a list;(*Locate all objects whose name is a suffix of the provided name
*)shortest_qualid : 'a -> Libnames.qualid;(*Return the shortest name in the current context
*)name : 'a -> Pp.t;(*Data as printed by the Locate command
*)print : 'a -> Pp.t;(*Data as printed by the Print command
*)about : 'a -> Pp.t;(*Data as printed by the About command
*)
}Generic data structure representing locatable objects.
Define a new type of locatable objects that can be reached via the corresponding generic vernacular commands. The string should be a unique name describing the kind of objects considered and that is added as a grammar command prefix for vernacular commands Locate.
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  On This Page