package binsec

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type alignment =
  1. | L
  2. | C
  3. | R
module Column : sig ... end
type t
val make : Column.t array -> t

make columns create a new table of Array.length columns columns

val append : t -> string array -> unit

append tbl row append a new row row to the table tbl. row should have the length equal to the column array used to create tbl

include Sigs.PRINTABLE with type t := t
val pp : Format.formatter -> t -> unit