MinMax2DList
Canonical path: NemAll_Python_Geometry.MinMax2DList
List for MinMax2D objects
Methods:
-
__contains__
–Check for a value in the list
-
__delitem__
–Delete a list item
-
__eq__
–Compare two lists
-
__getitem__
–Get a list item
-
__init__
–Initialize
-
__iter__
–List iterator
-
__len__
–Get the list length
-
__repr__
–Create a string from the elements of the list
-
__setitem__
–Set a list item
-
append
–Append a list item
-
extend
–Add the items from an iterable to the end of the list
__contains__
__contains__(value: MinMax2D) -> bool
Check for a value in the list
Parameters:
-
value
(MinMax2D
) –Value to check
Returns:
-
bool
–State for value is in the list
__delitem__
__delitem__(value: MinMax2D)
__getitem__
__getitem__(index: int) -> MinMax2D
__setitem__
__setitem__(index: int | slice, value: MinMax2D)
Set a list item
Parameters:
-
index
(int | slice
) –Index of the item
-
value
(MinMax2D
) –Value to item
extend
extend(iterable: MinMax2DList)
Add the items from an iterable to the end of the list
Parameters:
-
iterable
(MinMax2DList
) –Iterable to add
Placeholder