CaptureBufferVector

Neurocean大约 1 分钟

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.

  1. delitem(self: ocean.ocean.CaptureBufferVector, arg0: int) -> None

Delete the list elements at index i

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

  1. getitem(self: ocean.ocean.CaptureBufferVector, s: slice) -> ocean.ocean.CaptureBufferVector

Retrieve list elements using a slice object

  1. getitem(self: ocean.ocean.CaptureBufferVector, arg0: int) -> ocean.ocean.CaptureBuffer

__init__

def __init__(*args, **kwargs)

init(*args, **kwargs) Overloaded function.

  1. init(self: ocean.ocean.CaptureBufferVector) -> None

  2. init(self: ocean.ocean.CaptureBufferVector, arg0: ocean.ocean.CaptureBufferVector) -> None

Copy constructor

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

  1. setitem(self: ocean.ocean.CaptureBufferVector, arg0: int, arg1: ocean.ocean.CaptureBuffer) -> None

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

  1. extend(self: ocean.ocean.CaptureBufferVector, L: ocean.ocean.CaptureBufferVector) -> None

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

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

  1. pop(self: ocean.ocean.CaptureBufferVector) -> ocean.ocean.CaptureBuffer

Remove and return the last item

  1. pop(self: ocean.ocean.CaptureBufferVector, i: int) -> ocean.ocean.CaptureBuffer

Remove and return the item at index i

上次编辑于:
贡献者: damone