/**
 * The number of elements in a set lookup, and a
 * function that returns the lookup.
 */
export interface SetLookup {
    len: number;
    lookup: () => Record<string | number, boolean>;
}
