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