ip-map
    Preparing search index...

    Interface RangeInfo<Int>

    IP range info

    interface RangeInfo<Int extends number | bigint> {
        family: 4 | 6;
        first: string;
        firstInt: Int;
        index: number;
        last: string;
        lastInt: Int;
        size: Int;
    }

    Type Parameters

    • Int extends number | bigint
    Index
    family: 4 | 6
    first: string

    First address in string form.

    firstInt: Int
    index: number

    Range index in the map, for debugging purposes.

    last: string

    Last address in string form.

    lastInt: Int
    size: Int

    Number of addresses.