class documentation
class OrderedSet(list):
Simple implementation of an ordered set.
Items are ordered in the set by their order of adding them to the set. Uniqueness is assurd.
| Method | add |
Add an item to the set. |
class OrderedSet(list):
Simple implementation of an ordered set.
Items are ordered in the set by their order of adding them to the set. Uniqueness is assurd.
| Method | add |
Add an item to the set. |