mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-12-22 22:13:11 -05:00
20 lines
481 B
Diff
20 lines
481 B
Diff
85c85
|
|
< const fields = ???;
|
|
---
|
|
> const fields = @typeInfo(@TypeOf(tuple)).Struct.fields;
|
|
92c92
|
|
< for (fields) |field| {
|
|
---
|
|
> inline for (fields) |field| {
|
|
116c116
|
|
< // @field(foo, "x"); // returns the value at foo.x
|
|
---
|
|
> // @field(foo, "x");
|
|
120,122c120,122
|
|
< field.???,
|
|
< field.???,
|
|
< ???,
|
|
---
|
|
> field.name,
|
|
> field.field_type,
|
|
> @field(tuple, field.name),
|