package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a gxml =
  1. | Element of string * 'a * 'a gxml list
  2. | PCData of string

'a gxml is the type for semi-structured documents. They generalize XML by allowing any kind of attributes.

type xml = (string * string) list gxml

xml is a semi-structured documents where attributes are association lists from string to string.