1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-06-19 18:01:31 +00:00
Files
assemblyscript/std/assembly/iterator.ts
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;
// }