Insert a list of values into a tree
(self, xs)
| 447 | return self |
| 448 | |
| 449 | def insertList(self, xs): |
| 450 | """ Insert a list of values into a tree """ |
| 451 | if xs is not None and type(xs) is list: |
| 452 | for item in xs: self.insertValue(item) |
| 453 | |
| 454 | def removeValue(self, a): |
| 455 | """ Removes a value from the tree and keeps it balanced """ |
nothing calls this directly
no test coverage detected