(self, index)
| 30 | return len(self._holdings) |
| 31 | |
| 32 | def __getitem__(self, index): |
| 33 | return self._holdings[index] |
| 34 | |
| 35 | def __contains__(self, name): |
| 36 | return any(s.name == name for s in self._holdings) |
nothing calls this directly
no outgoing calls
no test coverage detected