map

inline fun <E : Any, R> EntitySequence<E, *>.map(transform: (E) -> R): List<R>(source)

Return a List containing the results of applying the given transform function to each element in the original sequence.

The operation is terminal.