Kirill Rakhman
Kirill Rakhman
When calling methods that don't fit on a single line, I use the following syntax: ``` foo( bar( "a", "very long argument" ), parameterName = 1 ) ``` I like...
Alternative syntax: ``` kotlin drawSquare( x = 10, y = 10, width = 100, height = 100, fill = true ) ``` Even though having the parans on separate lines...
In my experience, making the receiver of extension functions nullable has little benefitbecause you can always call the function using the safe-call operator. This has the added benefit of making...
Related SO question: http://stackoverflow.com/questions/35317940/when-should-one-prefer-kotlin-extension-functions
At least Eclipse didn't offer one. What's the parameter?
Nice, thank you.
Any updates on this feature? I'm transitioning to InfluxDB from a custom solution where we had something similar built in. One note, sampling duration should not be the same as...
I went ahead and drafted the feature in #55. Please take a look.