filterNotTo

inline fun <E : Any, T : BaseTable<E>, C : MutableCollection<in E>> EntitySequence<E, T>.filterNotTo(destination: C, predicate: (T) -> ColumnDeclaring<Boolean>): C(source)

Append all elements not matching the given predicate to the given destination.

The operation is terminal.