(self, index)
| 11 | return len(self._holdings) |
| 12 | |
| 13 | def __getitem__(self, index): |
| 14 | return self._holdings[index] |
| 15 | |
| 16 | def __contains__(self, name): |
| 17 | return any(s.name == name for s in self._holdings) |
nothing calls this directly
no outgoing calls
no test coverage detected