package caml2html

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type layer_info = {
  1. innermost : bool;
  2. outermost : bool;
}
type tag = [ `Start of string | `Stop ] * (Lexing.position * layer_info)
type filter = [
  1. | `All
  2. | `Innermost
  3. | `Outermost
]
val parse : impl_file:string -> annot_file:string -> tag list
val guess_annot_file : string -> string option
val from_file : impl_file:string -> annot_file:string -> tag list option