Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
exotic-structures / dist / typings / Iterator.d.ts
Size: Mime:
declare class IteratorWrap<Value> implements Iterator<Value> {
    index: number;
    array: Array<Value>;
    constructor(array: Array<Value>);
    hasNext(): boolean;
    next(): IteratorResult<Value>;
    remove(): void;
}
declare function toIterator<Value>(x: Array<Value> | Value): Iterator<Value> | IterableIterator<[string, Value]>;
export { IteratorWrap };
export { toIterator };