I would say, it's an interesting topic that hasn't...
# android
k
I would say, it's an interesting topic that hasn't been discussed enough, how to scope your stuff properly. there is https://github.com/yole/kotlin-style-guide/issues/6 in which yole proposes to not use objects solely for scoping but even the Kotlin code base contains objects that are basicly the equivalent of utility classes in java that have static methods only. making all utility functions top level has the disadvantage of littering the global name space and consequently the autocompletion.