module Context: sig
.. end
type
t
val create : int -> t
val ellipsis_default : string Pervasives.ref
default = "..."
val vertical_default : t option Pervasives.ref
- If
Some n
, the first
n
rows and the last
n
rows of a table are
printed. When the number of rows is smaller than
2 * n
, all rows are
shown.
- If
None
, all rows of a table are output.
val horizontal_default : t option Pervasives.ref
- If
Some n
, the first
n
columns and the last
n
columns of a table
are printed. When the number of columns is smaller than
2 * n
, all
columns are shown.
- If
None
, all columns of a table are output.
val set_dim_defaults : t option -> unit