Interface IToStringOptions

interface IToStringOptions {
    maxColumns?: number;
    maxNumSize?: number;
    maxRows?: number;
    padMinus?: boolean | "auto";
}

Properties

maxColumns?: number

Maximum number of printed columns.

Default

10

maxNumSize?: number

Maximum size (number of characters) of printed numbers.

Default

8

maxRows?: number

Maximum number of printed rows.

Default

15

padMinus?: boolean | "auto"

Place minus signs in their own column.

Default

'auto'