UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

8 lines (7 loc) 158 B
export declare class ValuesIterator<T> { private values; private currentIndex; constructor(values: T[]); hasNext(): boolean; next(): T; }