Assuming you want to create a new list
# android
l
Assuming you want to create a new list
👍 1
m
louiscad: Good point 🙂 I hate mutableList, it's so 2016 🙂
l
It's so GC too 😛 Use Mutable List when relevant to your use case, and use immutable otherwise, there's no one size fits all
m
GC only for big list, for small list it's a small impact (only descriptor is duplicated, objects stored are sames). Depends on use case as you said 🙂