Wdestroier
Wdestroier
> "All the good syntax is taken!" If a syntax that works for _for-in_ loops and collection literals is desired, then replacing `var i = 0; i < 10; i++`...
@szymonuwu I only had to install the latter on Windows 11 x86_64/amd64. @Greavesy1899 Would be nice to have these download links in a required dependencies section in the README.
@bernaferrari Ohhh yes. It's annoying to have a runtime error when trying to add an element to an immutable List, it happens all the time in Java. I guess it's...
I prefer `&&` and `||`, because they match the semantics of C++.
Mixing source control metadata in the csproj file is a terrible idea. Could the following be the default when not specified? ```xml SAK SAK SAK SAK ```
```dart // The list type is List [ for (final key in keys) box.get(key) as? Item ] ``` @gruvw The code above may add null to the list. Why not...
@seanhamstra May I ask what is the complete function/method body?
@tmaihoff Thanks for the workaround, it wasn't fixed in Flutter 3 apparently.
You may want to upvote issue #649.
Could ```kt numbers.map(it: it + 2) ``` be an improvement over ```dart numbers.map((it) => it + 2) ``` ? EDIT: I talked to Randal Schwartz and he pointed out this...