Add x to the right side of the deque.
x を deque の右側につけ加えます。 - Python
Add x to the left side of the deque.
x を deque の左側につけ加えます。 - Python
Currently, the only datatype is a deque. 現在のところ、実装されている型は deque のみです。 - Python
Deque objects support the following methods:
Deque オブジェクトは以下のようなメソッドをサポートしています: - Python
Rotate the deque n steps to the right.
Deque の要素を全体で nステップだけ右にローテートします。 - Python
Remove all elements from the deque leaving it with length 0.
Deque からすべての要素を削除し、長さを 0 にします。 - Python
Extend the right side of the deque by appending elements from the iterable argument. イテレータ化可能な引数 iterable から得られる要素を deque の右側に追加し拡張します。 - Python
Extend the left side of the deque by appending elements from iterable. イテレータ化可能な引数 iterable から得られる要素を deque の左側に追加し拡張します。 - Python
If iterable is not specified, the new deque is empty.Deques are a generalization of stacks and queues (the name is pronounced``deck'' and is short for ``double-ended queue''). iterable が指定されない場合、新しい deque オブジェクトは空になります。 Deque とは、スタックとキューを一般化したものです (この名前は「デック」と発音され、これは「double-ended queue」の省略形です)。 - Python
Remove and return an element from the right side of the deque.If no elements are present, raises a IndexError.
Deque の右側から要素をひとつ削除し、その要素を返します。 要素がひとつも存在しない場合は IndexError を発生させます。 - Python
Remove and return an element from the left side of the deque.If no elements are present, raises a IndexError.
Deque の左側から要素をひとつ削除し、その要素を返します。 要素がひとつも存在しない場合は IndexError を発生させます。 - Python
Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.