noticed this in one of the jetbrains examples. any...
# android
a
noticed this in one of the jetbrains examples. any reason why you would want to have the
private
modifier for both the companion and its members?
Copy code
private companion object {
        private val CONTENTS = "The quick brown fox jumps over the lazy dog"
                .split(" ".toRegex())
                .dropLastWhile { it.isEmpty() }
                .toTypedArray()
}