Extend the right side of the OrderedSet with elements from the iterable.
(self, iterable)
| 86 | self.pop() |
| 87 | |
| 88 | def extend(self, iterable): |
| 89 | """Extend the right side of the OrderedSet with elements from the iterable.""" |
| 90 | for element in iterable: |
| 91 | self.append(element) |
| 92 | |
| 93 | def extendleft(self, iterable): |
| 94 | """Extend the left side of the OrderedSet with elements from the iterable.""" |
no test coverage detected