hudsonb
02/27/2019, 11:51 PMkevinmost
02/28/2019, 12:30 AMhudsonb
02/28/2019, 12:47 AMkevinmost
02/28/2019, 12:53 AMdata class Polygon(...)
operator fun Polygon.plus(other: Polygon): Polygon = ...
than
data class Polygon(...) {
operator fun plus(other: Polygon): Polygon = ...
}
kevinmost
02/28/2019, 12:54 AMserebit
02/28/2019, 1:22 AMhudsonb
02/28/2019, 1:25 AMserebit
02/28/2019, 1:26 AMDico
02/28/2019, 5:09 AM*
imports. Imports can play a role for code readability, especially for other developers. Repositories where I can deduce the location of a symbol's declaration from imports at the top are helpful.Dico
02/28/2019, 5:12 AMgaetan
02/28/2019, 9:42 AM