package bap-primus

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

Module Lisp.Doc

module type Element = sig ... end

Abstract Element of a document.

module Category : Element
module Descr : sig ... end
type index = (Category.t * (Name.t * Descr.t) list) list

Documentation index.

Documentation index has the following ogranization:

  Category 1:
    - Element1 Name, Element1 Description;
  - Element2 Name, Element2 Description;
  ...
    Category2:
      - ...

All entries are sorted in alphabetic order.

module Make (Machine : Machine.S) : sig ... end