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