1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-05-14 16:21:26 +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;
// }