1#pragma once
2
3#include <pw_types.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9PW_STRUCT(PwIteratorCtorArgs) {
10 PwCtorArgs* next;
11 uint16_t type_id;
12 /*
13 * Arguments for Iterator constructor
14 */
15 PwValuePtr iterable; // iterator clones this for internal use
16};
17
18#ifdef __cplusplus
19}
20#endif