Interface Config

Configure polars; offers options for table formatting and more.

interface Config {
    setAsciiTables(): Config;
    setGlobalStringCache(): Config;
    setTblCols(n): Config;
    setTblRows(n): Config;
    setTblWidthChars(width): Config;
    setUtf8Tables(): Config;
    unsetGlobalStringCache(): Config;
}

Methods

  • Set the number of columns used to print tables

    Parameters

    • n: number

    Returns Config

  • Set the number of rows used to print tables

    Parameters

    • n: number

    Returns Config

  • Set the number of character used to draw the table

    Parameters

    • width: number

    Returns Config