Part of pida.core.plugins View In Hierarchy
Known subclasses: pida.core.plugins.DynamicNamedSets, pida.core.plugins.StrictNamedSets
Each key is associated to a set and the available operations are: to add elements to the named set or to remove them.
Line # | Kind | Name | Docs |
---|---|---|---|
110 | Method | __getitem__ | Returns the named set. |
119 | Method | add | Add one one value to the named set. |
128 | Method | remove | Remove the value from the set named name . |
137 | Method | keys | Return a collection of the names of the existing sets. |
145 | Method | __delitem__ | Remove the named set. |
154 | Class Method | __repr__ | Undocumented |
160 | Class Method | __len__ | Undocumented |
164 | Class Method | __iter__ | Undocumented |
@param name: the name of the set @return: an iterator to the named set.
@param name: the name of the set @param value: the value to be added to the set
value
from the set named name
.
@param name: the name of the set to remove the value from @param value: the value to remove from the named set
@param name: the name of the set to be removed.