filterNot

inline fun List<Int>.filterNot(predicate: (Int) -> Boolean): IntList(source)

Returns a IntList containing only elements NOT matching the given predicate.


inline fun List<Long>.filterNot(predicate: (Long) -> Boolean): LongList(source)

Returns a LongList containing only elements NOT matching the given predicate.


inline fun List<Float>.filterNot(predicate: (Float) -> Boolean): FloatList(source)

Returns a FloatList containing only elements NOT matching the given predicate.


inline fun List<Double>.filterNot(predicate: (Double) -> Boolean): DoubleList(source)

Returns a DoubleList containing only elements NOT matching the given predicate.