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