Actually immutable collections are good not just b...
# announcements
m
Actually immutable collections are good not just because they’re immutable, but also because they support quite efficient modifications. If you need just immutability, then
unmodifiableList()
is enough I think.