Is there a Kotlin library for small collections? L...
# getting-started
a
Is there a Kotlin library for small collections? Like if I need a
Map
that typically holds 1 or 2 items.
m
mapOf(..)
or
mutableMapOf(..)
. You can use the pair compact
mapOf("key" to "value",...)
g
I guess there is no one. But maybe `android.util.ArrayMap` implementation is what you are seeking.