Lucas
Lucas
When the test module has maven dependencies that themselves have transitive dependencies that also need to be imported, but are not part of the imports of the main module under...
> Based on the above two comments, I suppose that between Iterable and Iterator, it makes more sense for Iterator to be renamed to Stream than for Iterable to be...
> We could propose compiler flags to auto-generate factory functions that would turn: > > ```java > public class Foo extends View{ > public Foo(View parent){} > public void setTitle(String...
> The reason I've argued against going down this path is that "setting of multiple properties at once on an object" isn't a useful feature in idiomatic ceylon code. It...
Dart's [cascade notation](https://www.dartlang.org/guides/language/language-tour#cascade-notation-) provides a concise syntax for easily setting multiple properties on an object at once, also returning the original object at the end of the chain. This is...
> I don't think it matters much, but, FTR, in order of easiness-to-type, I have: > > `\{}` > `\()` > `${}` For readability, I find most to least readable:...
> If we are trying to make our language more in-line with its siblings, then ${} is definitely the way to go, I'm afraid. Changing one unique syntax to an...