2018-01-29 22:36:07 +01:00

5 lines
101 B
TypeScript

// export abstract class Iterator<T> {
// abstract get done(): bool;
// abstract next(): T;
// }