package forester

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Forester_core.BaseSource

Sourcetype addr =
  1. | User_addr of string
    (*

    The address of a tree that can be referenced from user text.

    *)
  2. | Machine_addr of int
    (*

    The address of an anonymous tree.

    *)
Sourceval addr_t : addr Repr.t
Sourceval pp_addr : Format.formatter -> addr -> unit
Sourcemodule Addr : sig ... end
Sourcemodule Addr_map : sig ... end
Sourcemodule Addr_set : sig ... end
Sourcemodule String_map : sig ... end
Sourcetype delim =
  1. | Braces
  2. | Squares
  3. | Parens
Sourcetype binding_strategy =
  1. | Lazy
  2. | Strict
Sourcetype 'a binding = binding_strategy * 'a
Sourceval delim_to_strings : delim -> string * string
Sourcetype math_mode =
  1. | Inline
  2. | Display
Sourcetype visibility =
  1. | Private
  2. | Public
Sourcetype xml_resolved_qname = {
  1. prefix : string;
  2. uname : string;
  3. xmlns : string option;
}
Sourceval show_xml_resolved_qname : xml_resolved_qname -> Ppx_deriving_runtime.string