|
__copy__(...)
Return a shallow copy of a deque. |
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__reduce__(...)
Return state information for pickling. |
|
|
|
|
|
__reversed__(D)
return a reverse iterator over the deque |
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
append(...)
Add an element to the right side of the deque. |
|
|
|
appendleft(...)
Add an element to the left side of the deque. |
|
|
|
clear(...)
Remove all elements from the deque. |
|
|
|
extend(...)
Extend the right side of the deque with elements from the iterable |
|
|
|
extendleft(...)
Extend the left side of the deque with elements from the iterable |
|
|
|
pop(...)
Remove and return the rightmost element. |
|
|
|
popleft(...)
Remove and return the leftmost element. |
|
|
|
remove(D,
value)
remove first occurrence of value. |
|
|
|
rotate(...)
Rotate the deque n steps to the right (default n=1). |
|
|
Inherited from object :
__delattr__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|