Type alias NumberSystemSettings

NumberSystemSettings: {
    first?: string;
    last?: string;
    segments?: {
        n?: number;
        z?: number;
    };
    zero?: string;
    ϰ?: number;
}

Settings from the number system

Type declaration

  • Optional first?: string

    The unicode character that represents the first value in the set

  • Optional last?: string

    The unicode character that represents the last value in the set

  • Optional segments?: {
        n?: number;
        z?: number;
    }

    Segments length from the position strings

    • Optional n?: number

      segment n string max length

    • Optional z?: number

      segment z string max length

  • Optional zero?: string

    The unicode character that represents the zero value in the set

  • Optional ϰ?: number

    Coeficient that helps to set a threshold to determine when a position string is starting to get too long

Generated using TypeDoc