Difference between two IBLTs.

interface Diff {
    negative: Set<number>;
    positive: Set<number>;
    success: boolean;
    total: number;
}

Properties

negative: Set<number>

Keys absent in the first IBLT but present in the second IBLT.

positive: Set<number>

Keys present in the first IBLT but absent in the second IBLT.

success: boolean

Whether all keys have been extracted.

total: number

Total number of keys in positive and negative sets.