kotlin.sequences.filterNotTo

filterNotTo

inline fun <T, C : MutableCollection<in T>> Sequence<T>.filterNotTo(
    destination: C, 
    predicate: (T) -> Boolean
): C

Appends all elements not matching the given predicate to the given 登录查看完整内容