returns the size of the vector
(self)
| 76 | else: |
| 77 | raise Exception("index out of range") |
| 78 | def __len__(self): |
| 79 | """ |
| 80 | returns the size of the vector |
| 81 | """ |
| 82 | return len(self.__components) |
| 83 | def eulidLength(self): |
| 84 | """ |
| 85 | returns the eulidean length of the vector |
nothing calls this directly
no outgoing calls
no test coverage detected