mapToMutableList

inline fun <E, R> Iterable<E>.mapToMutableList(transform: (E) -> R): MutableList<R>

Transforms the elements of this collection using map and returns MutableList representation of the transformed collection.