Array🔗
-
class
visionappster.
Array
🔗 A wrapper for the va_array C type.
-
__init__
(*args, **kwargs)🔗 Overloaded function.
init(self: visionappster.Array) -> None
init(self: visionappster.Array, arg0: visionappster.Array) -> None
Copy constructor
init(self: visionappster.Array, arg0: Iterable) -> None
-
append
(self: visionappster.Array, x: Any) → None🔗 Add an item to the end of the list
-
clear
(self: visionappster.Array) → None🔗 Clear the contents
-
count
(self: visionappster.Array, x: Any) → int🔗 Return the number of times
x
appears in the list
-
extend
(*args, **kwargs)🔗 Overloaded function.
extend(self: visionappster.Array, L: visionappster.Array) -> None
Extend the list by appending all the items in the given list
extend(self: visionappster.Array, L: Iterable) -> None
Extend the list by appending all the items in the given list
-
insert
(self: visionappster.Array, i: int, x: Any) → None🔗 Insert an item at a given position.
-
pop
(*args, **kwargs)🔗 Overloaded function.
pop(self: visionappster.Array) -> Any
Remove and return the last item
pop(self: visionappster.Array, i: int) -> Any
Remove and return the item at index
i
-
remove
(self: visionappster.Array, x: Any) → None🔗 Remove the first item from the list whose value is x. It is an error if there is no such item.
-