Add an element to the right side of the OrderedSet.
(self, element)
| 73 | return '%s(%r)' % (self.__class__.__name__, list(self)) |
| 74 | |
| 75 | def append(self, element): |
| 76 | """Add an element to the right side of the OrderedSet.""" |
| 77 | self._insertatnode(self._end.prev, element) |
| 78 | |
| 79 | def appendleft(self, element): |
| 80 | """Add an element to the left side of the OrderedSet.""" |
no test coverage detected