pymel.util.MutableSet

Inheritance diagram of MutableSet

class MutableSet
add(value)

Add an element.

clear()

This is slow (creates N new iterators!) but effective.

discard(value)

Remove an element. Do not raise an exception if absent.

pop()

Return the popped value. Raise KeyError if empty.

remove(value)

Remove an element. If not a member, raise a KeyError.

Previous topic

pymel.util.MutableSequence

Next topic

pymel.util.ProxyUnicode

Core

Core Modules

Other Modules

This Page