filterNot

inline fun ByteBuffer.filterNot(predicate: (Byte) -> Boolean): List<Byte>
inline fun ShortBuffer.filterNot(predicate: (Short) -> Boolean): List<Short>
inline fun IntBuffer.filterNot(predicate: (Int) -> Boolean): List<Int>
inline fun LongBuffer.filterNot(predicate: (Long) -> Boolean): List<Long>
inline fun FloatBuffer.filterNot(predicate: (Float) -> Boolean): List<Float>
inline fun DoubleBuffer.filterNot(predicate: (Double) -> Boolean): List<Double>
inline fun CharBuffer.filterNot(predicate: (Char) -> Boolean): List<Char>

Returns a list containing all elements not matching the given predicate.

Samples

kool.buffers.Collections.Filtering.filter