br_stimpy._bstimulator.vector_UINT32
- class vector_UINT32(*args, **kwargs)
Bases:
pybind11_objectOverloaded function.
__init__(self: br_stimpy._bstimulator.vector_UINT32) -> None
__init__(self: br_stimpy._bstimulator.vector_UINT32, arg0: br_stimpy._bstimulator.vector_UINT32) -> None
Copy constructor
__init__(self: br_stimpy._bstimulator.vector_UINT32, arg0: collections.abc.Iterable) -> None
Methods
Add an item to the end of the list
Clear the contents
Return the number of times
xappears in the listOverloaded function.
Insert an item at a given position.
Overloaded function.
Remove the first item from the list whose value is x.
- append(self: br_stimpy._bstimulator.vector_UINT32, x: SupportsInt | SupportsIndex) None
Add an item to the end of the list
- clear(self: br_stimpy._bstimulator.vector_UINT32) None
Clear the contents
- count(self: br_stimpy._bstimulator.vector_UINT32, x: SupportsInt | SupportsIndex) int
Return the number of times
xappears in the list
- extend(*args, **kwargs)
Overloaded function.
extend(self: br_stimpy._bstimulator.vector_UINT32, L: br_stimpy._bstimulator.vector_UINT32) -> None
Extend the list by appending all the items in the given list
extend(self: br_stimpy._bstimulator.vector_UINT32, L: collections.abc.Iterable) -> None
Extend the list by appending all the items in the given list
- insert(self: br_stimpy._bstimulator.vector_UINT32, i: SupportsInt | SupportsIndex, x: SupportsInt | SupportsIndex) None
Insert an item at a given position.
- pop(*args, **kwargs)
Overloaded function.
pop(self: br_stimpy._bstimulator.vector_UINT32) -> int
Remove and return the last item
pop(self: br_stimpy._bstimulator.vector_UINT32, i: typing.SupportsInt | typing.SupportsIndex) -> int
Remove and return the item at index
i
- remove(self: br_stimpy._bstimulator.vector_UINT32, x: SupportsInt | SupportsIndex) None
Remove the first item from the list whose value is x. It is an error if there is no such item.