Interface IKeyIterator<K>

interface IKeyIterator<K> {
    cmp(a): number;
    hasNext(): boolean;
    next(): this;
    reset(key): this;
    value(): string;
}

Type Parameters

  • K

Implemented by

Methods