avb.core¶
AVBRefList¶
-
class
avb.core.AVBRefList¶ Bases:
list-
append(x)¶ Append object to the end of the list.
-
clear()¶ Remove all items from list.
-
copy(root, parent=None)¶ Return a shallow copy of the list.
-
extend(x)¶ Extend list by appending elements from the iterable.
-
insert(i, x)¶ Insert object before index.
-
pop(i=-1)¶ Remove and return item at index (default last).
Raises IndexError if list is empty or index is out of range.
-
remove(x)¶ Remove first occurrence of value.
Raises ValueError if the value is not present.
-
reverse()¶ Reverse IN PLACE.
-
sort(key=None, reverse=False)¶ Stable sort IN PLACE.
-