Documentation / dataflow-async / com.femastudios.dataflow.async.extensions / containsAll
Go to reference
Go to reference
containsAll
fun <E> Attribute<Collection<E>>.containsAll(elements: Attribute<Collection<E>>): Attribute<Boolean>
fun <E> Attribute<Collection<E>>.containsAll(elements: Collection<E>): Attribute<Boolean>
Same as containsAll, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling containsAll in the transformation function.
This is simply a convenience function.
See Also
kotlin.collections.Collection.containsAll
fun <E> Attribute<Set<E>>.containsAll(elements: Attribute<Collection<E>>): Attribute<Boolean>
fun <E> Attribute<Set<E>>.containsAll(elements: Collection<E>): Attribute<Boolean>
Same as containsAll, but accepts Attribute and returns a new Attribute.
Calling this function is equivalent to use transform and calling containsAll in the transformation function.
This is simply a convenience function.
See Also