Fraci
    Preparing search index...

    Type Alias FraciOptionsBase

    FraciOptionsBase:
        | { digitBase: string; lengthBase: string; type?: "string" }
        | { type: "binary" }

    Base options for fractional indexing.

    This type serves as the base type for the B template parameter in the Fraci type, defining the encoding strategy used by the index.

    Type declaration

    • { digitBase: string; lengthBase: string; type?: "string" }
      • ReadonlydigitBase: string

        The character set used for representing digits in the fractional index.

        These characters form the ordered set used to encode the actual index values, and must be in ascending lexicographic order.

        The second and all subsequent characters of a fractional index come from this character set.

      • ReadonlylengthBase: string

        The character set used for encoding the length of the integer part.

        This determines what characters are used to represent the length of the integer portion of the fractional index. Characters must be in ascending lexicographic order.

        The first character of a fractional index comes from this character set.

      • Optional Readonlytype?: "string"

        The type discriminator identifying this as a string fractional index configuration.

        Must be "string" or undefined for string fractional indices.

    • { type: "binary" }
      • Readonlytype: "binary"

        The type discriminator identifying this as a binary fractional index configuration.

        Must be "binary" for binary fractional indices.