Is there an equivalent to Guava's `Iterables.trans...
# announcements
m
Is there an equivalent to Guava's
Iterables.transform
for
Iterable
in Kotlin that I just haven't found? The
Iterable.map
extension function returns a
List
, but when dealing with very large collections I want to lazily traverse rather than allocating another collection.