|
TReK Python
5.3.3
Telemetry/Command API
|
Zero-based array of TrackItem's. More...
Public Member Functions | |
Initialize / Finalize | |
Functions handling class initialization and finalization. | |
| def | TrackItemArray ( Optional[TrackItemArray] tracked_item_array=None, Optional[c_void_p] native_ptr=None -> def -> def -> def ) -> def |
| Class initializer. More... | |
| def | clone ( -> TrackItemArray -> def -> def ) -> def |
| Creates a new instance of the object with the same contents. | |
| def | copy (copy_from: object -> None -> def -> def ) -> def |
| Copies the contents of the provided 'copy_from' TrackItemArray. More... | |
Array Management | |
Functions handling contents of the array. | |
| def | append ( TrackItem item -> None -> def -> def ) -> def |
| Adds the item to the end of the array. More... | |
| def | clear ( -> None -> def -> def ) -> def |
| Removes all of the items from the array. | |
| def | __getitem__ (key: int -> Optional[TrackItem] -> def -> def ) -> def |
| Return the item at the given index key. More... | |
| def | __setitem__ (key: int, TrackItem track_item -> None -> def -> def ) -> def |
| Replaces the item at the given location. More... | |
| def | __len__ ( -> int -> def -> def ) -> def |
| Returns the number of TrackItem's in the array. More... | |
Zero-based array of TrackItem's.
| ( | tracked_item_array | : Optional[TrackItemArray] |