UniversalSet.contains_all

UniversalSet.contains_all(self, other)

Test if all elements in other are contained in this set.

This is a default implementation that assumes other to be a sequence and tests each elment of other sequentially. This method should be overridden by subclasses.

Returns
all_containedbool

True if all elements of other are contained in this set, False otherwise