Daniil Vodopian
Daniil Vodopian
Multiple test files are necessary since not all variants compile. The intended use is to show the options, ask what options will at all compile, then check files `option-*.kts` one...
Hello! I see no automatic tests in the repo. Do the tests exist? If so, where can I find them? If I want to contribute, how do I test the...
After I updated to U 19.04, the title barrs appeared despite the Extension being activated. All the other functions seem to be working. Checked on regular Gnome and "Gnome on...
Когда reedy встречает англоязычное имя типа `Mr. Bond`, она воспринимает его не только как два разных слова, но и как два разных предложения. В результате возникает пауза после `Mr.`, хотя...
What advantages does Pronghorn bring over bare coroutines from kotlinx.coroutines? In what situations would I want to use it? How is it different from other actor frameworks (Akka, etc) or...
When making a function with a lambda parameter prefer a simple lambda without a receiver: ``` kotlin // simple lambda: fun foo(operation: (A) -> Unit) {} // lambda with receiver...
I was wondering what are the views on vertical formatting, e.i. putting similar code one under another: ``` val width = 111 + n + listOf(239, 100500, 10).max() val height...
Do NOT use `functional expression` in the short function declaration form without curly braces. // Good: full declaration form fun(): Int { return 1 } // Bad: short declaration form...
This issue lists references to coding conventions that were developed in production teams using Kotlin. - [Corda](https://www.corda.net/) (Mike Hearn) https://docs.corda.net/head/codestyle.html - [Blockchain](https://www.blockchain.com/) (Adam Bennett) https://github.com/ditn/KotlinStyleGuide - [Gridstone](https://gridstone.com.au/) (Chris Horner) https://github.com/Gridstone/KotlinStyleGuide...
### if-else A one-line `if-else` expression should not use curly bracket blocks: ``` kotlin val max = if(a > b) a else b ``` A multiline `if-else` may not to...