1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-04-30 01:12:16 +00:00
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;
// }