For more information on iterator objects, see``Iterator Types'' in the
イテレータオブジェクトに関するより詳細な情報は、 - Python
10.8 Supporting the Iterator 10.8 イテレータプロトコルをサポートする - Python
Return an iterator object.
イテレータオブジェクトを返します。 - Python
10.8 Supporting the Iterator Protocol
10.8 イテレータプロトコルをサポートする - Python
Return a new iterator.
新たなイテレータを返します。 - Python
Return the iterator object itself.
イテレータオブジェクト自体を返します。 - Python
Files support the iterator protocol.
ファイルはイテレータプロトコルをサポートします。 - Python
return an iterator over (key, value) pairs
(key, value) ペアにわたるイテレータを返します - Python
To this end, it implements the SPL interfaces Iterator, Countable, and ArrayAccess.
そのため、このパッケージは SPL インターフェイス群のうちIterator、Countable そして ArrayAccess を実装しています。 - PEAR
return an iterator over the mapping's values
マップの値列にわたるイテレータを返します - Python
return an iterator over the mapping's keys
マップのキー列にわたるイテレータを返します - Python
To add an iterator using a Live Template:
ライブテンプレートを使用して反復子を追加する - NetBeans
Python provides two general-purpose iterator objects.
Python では二種類のイテレータオブジェクトを提供しています。 - Python
Return true if the object o supports the iterator protocol.
o がイテレータプロトコルをサポートする場合に真を返します。 - Python
An optional pointer to a function that returns the next item in an iterator, or raises StopIteration when the iterator is exhausted. ポインタで、イテレータにおいて次の要素を返すか、イテレータの要素がなくなるとStopIteration を送出する関数を指します。 - Python
Return an iterator that works with a general sequence object,seq.
一般的なシーケンスオブジェクト seq を扱うイテレータを返します。 - Python
The iterator objects themselves are required to support the following two methods, which together form the iterator protocol: イテレータオブジェクト自体は以下の 2 のメソッドをサポートする必要があります。 これらのメソッドは 2 つ合わせて イテレータプロトコルを成します: - Python
Make an iterator that computes the function using arguments from each of the iterables. iterablesの要素を引数としてfuntionを呼び出すイテレータを作成します。 - Python
Make an iterator that computes the function using arguments tuplesobtained from the iterable.
iterablesの要素を引数としてfuntionを呼び出すイテレータを作成します。 - Python
Make an iterator that returns elements from the iterable as long as the predicate is true. predicateが真である限りiterableから要素を返すイテレータを作成します。 - Python
This is equivalent to the Python expression "iter(o)".It returns a new iterator for the object argument, or the object itself if the object is already an iterator.
Python の式 "iter(o)" と同じです。 引数にとったオブジェクトに対する新たなイテレータか、オブジェクトがすでにイテレータの場合にはオブジェクト自身を返します。 - Python
The object is required to support the iterator protocol described below. イテレータオブジェクトは以下で述べるイテレータプロトコルをサポートする必要があります。 - Python
Make an iterator returning elements from the iterable and saving a copy of each. iterableから要素を取得し、同時にそのコピーを保存するイテレータを作成します。 - Python
A file object is its own iterator, for example iter(f) returnsf (unless f is closed).
ファイルオブジェクトはそれ自身がイテレータです。 すなわち、iter(f) は (f が閉じられていない限り) f を返します。 - Python
If this yields a new value, push it on the stack (leaving the iterator belowit). これが新しい値を作り出すならば、それを(その下にイテレータを残したまま)スタックにプッシュします。 - Python
Make an iterator that drops elements from the iterable as long as the predicate is true; afterwards, returns every element. predicateが真である限りは要素を無視し、その後は全ての要素を返すイテレータを作成します。 - Python
(This constraintwas added in Python 2.3; in Python 2.2, various iterators are broken according to this rule.)Python's generators provide a convenient way to implement the iterator protocol. Python におけるジェネレータ (generator) は、イテレータプロトコルを実装する簡便な方法を提供します。 - Python
This method is called when an iterator is required for a container.This method should return a new iterator object that can iterate overall the objects in the container.
このメソッドは、コンテナに対してイテレータが要求された際に呼び出されます。 このメソッドは、コンテナ内の全てのオブジェクトにわたる反復処理ができるような、新たなイテレータオブジェクトを返さなければなりません。 - Python
The user-supplied iterator work function must have the following set of input parameters:
利用者が与える繰返し子(イテレータ)仕事関数は下記の入力パラメータの組を持たなければならない。 - コンピューター用語辞典
If the iterator indicates it is exhausted TOS is popped, and the byte code counter is incremented by delta. イテレータが尽きたことを示した場合は、TOSがポップされます。 そして、バイトコードカウンタがdeltaだけ増やされます。 - Python
To write a loop which iterates over an iterator, the C code should look something like this: イテレータの返す要素にわたって反復処理を行うループを書くと、C のコードは以下のようになるはずです: - Python
Make an iterator that returns consecutive integers starting with n.If not specified n defaults to zero.
nで始まる、連続した整数を返すイテレータを作成します。 n を指定しなかった場合、デフォルト値はゼロです。 - Python
Make an iterator that returns consecutive keys and groups from the iterable. 同じキーをもつような要素からなるiterable 中のグループに対して、キーとグループを返すようなイテレータを作成します。 - Python
Make an iterator that returns elements from the first iterable until it is exhausted, then proceeds to the next iterable, until all of the iterables are exhausted. 先頭のiterableの全要素を返し、次に2番目のiterableの全要素…と全iterableの要素を返すイテレータを作成します。 - Python
Make an iterator that filters elements from iterable returning only those for which the predicate is True.If predicate is None, return the items that are true.Equivalent to: predicateがTrueとなる要素だけを返すイテレータを作成します。 predicateがNoneの場合、値が真であるアイテムだけを返します。 - Python
Make an iterator that filters elements from iterable returning only those for which the predicate is False.If predicate is None, return the items that are false.Equivalent to: predicateがFalseとなる要素だけを返すイテレータを作成します。 predicateがNoneの場合、値が偽であるアイテムだけを返します。 - Python
The type of generator-iterator objects, produced by calling a generator function.New in version 2.2. ジェネレータ関数の呼び出しによって生成されたイテレータオブジェクトの型です。 バージョン 2.2 で 新たに追加 された仕様です。 - Python
data type: org.w3c.dom.Node (not supported in Python 2) description: When parsing, the current DOM node being visited if this is a DOM iterator; when not parsing, the root DOM node foriteration.access: (parsing) read-only; (not parsing) read/write data type: org.w3c.dom.Node (Python 2 では未サポート) description: パース時は DOM イテレータにおけるカレント DOM ノード、非パース時はルート DOM ノードを指す。 - Python
Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. 列挙オブジェクトを返します。 iterable はシーケンス型、イテレータ型、あるいは反復をサポートする他のオブジェクト型でなければなりません。 - Python
Note,the iterator does not produce any output until the predicate is true, so it may have a lengthy start-up time. このイテレータは、predicateが真の間は全く要素を返さないため、最初の要素を返すまでに長い時間がかかる場合があります。 - Python
Make an iterator that returns selected elements from the iterable.If start is non-zero, then elements from the iterable are skippeduntil start is reached.
iterableから要素を選択して返すイテレータを作成します。 startが0以外であれば、iterableの先頭要素はstartに達するまでスキップします。 - Python
If stop is None, then iteration continues until the iterator is exhausted, if at all; otherwise, it stops at the specified position. stopがNoneであれば、無限に、もしくはiterableの全要素を返すまで値を返します。 None以外ならイテレータは指定された要素位置で停止します。 - Python
In traversing up, the iterator finds the next port that connects to the folded model net indicated by the describer used during initialization. 上位方向移動では、反復器は、初期化中に使用される記述子によって示される折たたみモデルに接続する隣接ポートを見つける。 - 特許庁
In traversing down, the iterator finds the next port instance that connects to the folded model net indicated by the describer used during initialization. 下位方向移動では、反復器は、初期化中に使用される記述子によって示される折たたみモデルに接続する隣接ポートを見つける。 - 特許庁
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.