flatMapTo
inline fun <T, R, C : MutableCollection<in R>> Iterable<T>.flatMapTo(
destination: C,
transform: (T) -> Iterable<R>
): C
Appends all elements yielded from results of transform function being invoked on each element of original collection, to the given 登录查看完整内容