1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-04-28 00:12:15 +00:00

5 lines
101 B
TypeScript
Raw Normal View History

2018-01-29 22:36:07 +01:00
// export abstract class Iterator<T> {
// abstract get done(): bool;
// abstract next(): T;
// }