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.

  1. extend(self: pyhelayers.CTileVector, L: pyhelayers.CTileVector) -> None

Extend the list by appending all the items in the given list

  1. 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.

  1. pop(self: pyhelayers.CTileVector) -> pyhelayers.CTile

Remove and return the last item

  1. pop(self: pyhelayers.CTileVector, i: int) -> pyhelayers.CTile

Remove and return the item at index i