Luke H-W

Results 54 comments of Luke H-W

> Do I understand correctly that the implementation of this proposal would allow to implement Yes, though adding those iterators to the standard classes can be a separate proposal if...

Iterators would just need to return arrays for them to work with this proposal, they'd just be one application of the syntax.

It has been brought to my attention that C++17 has this syntax for tuples: (matches third suggestion in OP) ```C++ auto [x, y] = z; ``` Rust has a practically...

>This is fine for untyped languages, but is a step in the wrong direction for GDScript which is gradually moving towards type safety. GDScript is a fully dynamic language that...