package pxp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module StringMap : sig ... end
type ext_id =
  1. | System of string
  2. | Public of string * string
  3. | Anonymous
  4. | Private of private_id
and private_id
type resolver_id = {
  1. rid_private : private_id option;
  2. rid_public : string option;
  3. rid_system : string option;
  4. rid_system_base : string option;
}
type dtd_id =
  1. | External of ext_id
  2. | Derived of ext_id
  3. | Internal
type content_model_type =
  1. | Unspecified
  2. | Empty
  3. | Any
  4. | Mixed of mixed_spec list
  5. | Regexp of regexp_spec
and mixed_spec =
  1. | MPCDATA
  2. | MChild of string
and regexp_spec =
  1. | Optional of regexp_spec
  2. | Repeated of regexp_spec
  3. | Repeated1 of regexp_spec
  4. | Alt of regexp_spec list
  5. | Seq of regexp_spec list
  6. | Child of string
type att_type =
  1. | A_cdata
  2. | A_id
  3. | A_idref
  4. | A_idrefs
  5. | A_entity
  6. | A_entities
  7. | A_nmtoken
  8. | A_nmtokens
  9. | A_notation of string list
  10. | A_enum of string list
type att_default =
  1. | D_required
  2. | D_implied
  3. | D_default of string
  4. | D_fixed of string
type att_value =
  1. | Value of string
  2. | Valuelist of string list
  3. | Implied_value
type pool