Documentation / dataflow-async / com.femastudios.dataflow.async.extensions / filterNot
Go to reference
Go to reference
filterNot
fun <T> Attribute<Iterable<T>>.filterNot(predicate: (T) -> Boolean): Attribute<List<T>>
fun <K, V> Attribute<Map<K, V>>.filterNot(predicate: (Entry<K, V>) -> Boolean): Attribute<Map<K, V>>
Same as filterNot, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling filterNot in the transformation function.
This is simply a convenience function.
See Also
fun <T> Attribute<Sequence<T>>.filterNot(predicate: (T) -> Boolean): Attribute<Sequence<T>>
Same as filterNot, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling filterNot in the transformation function.
This is simply a convenience function.
See Also
fun Attribute<String>.filterNot(predicate: (Char) -> Boolean): Attribute<String>
Same as filterNot, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling filterNot in the transformation function.
This is simply a convenience function.
See Also