VecGUIDList
Canonical path: NemAll_Python_Utility.VecGUIDList
__contains__
__contains__(value: GUID) -> bool
Check for a value in the list
Parameters:
-
value
(GUID
) –Value to check
Returns:
-
bool
–State for value is in the list
__eq__
__eq__(compare_list: VecGUIDList) -> bool
Compare two list
Parameters:
-
compare_list
(VecGUIDList
) –List to compare
Returns:
-
bool
–Lists are equal state
__getitem__
__getitem__(index: int) -> GUID
__setitem__
__setitem__(index: int | slice, value: GUID)
extend
extend(iterable: VecGUIDList)
Add the items from an iterable to the end of the list
Parameters:
-
iterable
(VecGUIDList
) –Iterable to add
Placeholder