Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
header.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
type index = { number_of_index : int; section_size : int } module Entry = struct type record = { tag : int; kind : int; offset : int; count : int } and value = | Null | Char of char | Int of int | Int32 of int32 | Int64 of int64 | String of string | Binary of bytes | StringArray of string list | Array of value list end type t = (Tag.t * Entry.value) list