CaptureBufferVector
CaptureBufferVector
CaptureBufferVector Objects
class CaptureBufferVector()
__bool__
def __bool__()
bool(self: ocean.ocean.CaptureBufferVector) -> bool
Check whether the list is nonempty
__delitem__
def __delitem__(*args, **kwargs)
delitem(*args, **kwargs) Overloaded function.
- delitem(self: ocean.ocean.CaptureBufferVector, arg0: int) -> None
Delete the list elements at index i
- delitem(self: ocean.ocean.CaptureBufferVector, arg0: slice) -> None
Delete list elements using a slice object
__getitem__
def __getitem__(*args, **kwargs)
getitem(*args, **kwargs) Overloaded function.
- getitem(self: ocean.ocean.CaptureBufferVector, s: slice) -> ocean.ocean.CaptureBufferVector
Retrieve list elements using a slice object
- getitem(self: ocean.ocean.CaptureBufferVector, arg0: int) -> ocean.ocean.CaptureBuffer
__init__
def __init__(*args, **kwargs)
init(*args, **kwargs) Overloaded function.
init(self: ocean.ocean.CaptureBufferVector) -> None
init(self: ocean.ocean.CaptureBufferVector, arg0: ocean.ocean.CaptureBufferVector) -> None
Copy constructor
- init(self: ocean.ocean.CaptureBufferVector, arg0: Iterable) -> None
__iter__
def __iter__()
iter(self: ocean.ocean.CaptureBufferVector) -> Iterator
__len__
def __len__()
len(self: ocean.ocean.CaptureBufferVector) -> int
__setitem__
def __setitem__(*args, **kwargs)
setitem(*args, **kwargs) Overloaded function.
setitem(self: ocean.ocean.CaptureBufferVector, arg0: int, arg1: ocean.ocean.CaptureBuffer) -> None
setitem(self: ocean.ocean.CaptureBufferVector, arg0: slice, arg1: ocean.ocean.CaptureBufferVector) -> None
Assign list elements using a slice object
append
def append(x)
append(self: ocean.ocean.CaptureBufferVector, x: ocean.ocean.CaptureBuffer) -> None
Add an item to the end of the list
clear
def clear()
clear(self: ocean.ocean.CaptureBufferVector) -> None
Clear the contents
extend
def extend(*args, **kwargs)
extend(*args, **kwargs) Overloaded function.
- extend(self: ocean.ocean.CaptureBufferVector, L: ocean.ocean.CaptureBufferVector) -> None
Extend the list by appending all the items in the given list
- extend(self: ocean.ocean.CaptureBufferVector, L: Iterable) -> None
Extend the list by appending all the items in the given list
insert
def insert(i, x)
insert(self: ocean.ocean.CaptureBufferVector, i: int, x: ocean.ocean.CaptureBuffer) -> None
Insert an item at a given position.
pop
def pop(*args, **kwargs)
pop(*args, **kwargs) Overloaded function.
- pop(self: ocean.ocean.CaptureBufferVector) -> ocean.ocean.CaptureBuffer
Remove and return the last item
- pop(self: ocean.ocean.CaptureBufferVector, i: int) -> ocean.ocean.CaptureBuffer
Remove and return the item at index i