input: components or nothing simple constructor for init the vector
(self,components=[])
| 46 | TODO: compare-operator |
| 47 | """ |
| 48 | def __init__(self,components=[]): |
| 49 | """ |
| 50 | input: components or nothing |
| 51 | simple constructor for init the vector |
| 52 | """ |
| 53 | self.__components = list(components) |
| 54 | def set(self,components): |
| 55 | """ |
| 56 | input: new components |
nothing calls this directly
no outgoing calls
no test coverage detected