Array🔗

class visionappster.Array🔗

A wrapper for the va_array C type.

__init__(*args, **kwargs)🔗

Overloaded function.

  1. init(self: visionappster.Array) -> None

  2. init(self: visionappster.Array, arg0: visionappster.Array) -> None

Copy constructor

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

  1. extend(self: visionappster.Array, L: visionappster.Array) -> None

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

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

  1. pop(self: visionappster.Array) -> Any

Remove and return the last item

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