CTileTensorVector#
- class CTileTensorVector#
A vector (list) of CTileTensor objects.
- append(self: pyhelayers.CTileTensorVector, x: pyhelayers.CTileTensor) None #
Add an item to the end of the list
- clear(self: pyhelayers.CTileTensorVector) None #
Clear the contents
- extend(*args, **kwargs)#
Overloaded function.
extend(self: pyhelayers.CTileTensorVector, L: pyhelayers.CTileTensorVector) -> None
Extend the list by appending all the items in the given list
extend(self: pyhelayers.CTileTensorVector, L: Iterable) -> None
Extend the list by appending all the items in the given list
- insert(self: pyhelayers.CTileTensorVector, i: int, x: pyhelayers.CTileTensor) None #
Insert an item at a given position.
- pop(*args, **kwargs)#
Overloaded function.
pop(self: pyhelayers.CTileTensorVector) -> pyhelayers.CTileTensor
Remove and return the last item
pop(self: pyhelayers.CTileTensorVector, i: int) -> pyhelayers.CTileTensor
Remove and return the item at index
i
This API is a Python only API