We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
x = new { ["one"] = 1 ["two"] = this["one"] + 1 } y = (x) { for (k, v in x) { [k] = v + 1 } }
Here, y["two"] should be 4, not 3.
y["two"]
for (v in x) {} should iterate over lazy values, and for (k, v in x) {} should iterate over eager keys and lazy values.
for (v in x) {}
for (k, v in x) {}