Set.contains_all
- Set.contains_all(other)[source]
Test if all elements in
otherare contained in this set.This is a default implementation that assumes
otherto be a sequence and tests each elment ofothersequentially. This method should be overridden by subclasses.Returns
- all_containedbool
Trueif all elements ofotherare contained in this set,Falseotherwise