Deletes a list of values from a tree
(self, xs)
| 466 | return self |
| 467 | |
| 468 | def removeList(self, xs): |
| 469 | """ Deletes a list of values from a tree """ |
| 470 | if xs is not None and type(xs) is list: |
| 471 | for item in xs: self.removeValue(item) |
nothing calls this directly
no test coverage detected