Removes first occurence(s) of the value(s) in-place.
(self, b)
| 419 | return a |
| 420 | |
| 421 | def remove_(self, b): |
| 422 | """ Removes first occurence(s) of the value(s) in-place. """ |
| 423 | warn() |
| 424 | if isinstance(b, Iterable): |
| 425 | for i in b: |
| 426 | super().remove(i) |
| 427 | else: |
| 428 | super().remove(b) |
| 429 | return self |
| 430 | |
| 431 | def removeByIndex(self, b, inplace=False): |
| 432 | """ Removes the value at specified index or indices. """ |