For more information on iterator objects, see``Iterator Types'' in the 例文帳に追加
イテレータオブジェクトに関するより詳細な情報は、 - Python
10.8 Supporting the Iterator 例文帳に追加
10.8 イテレータプロトコルをサポートする - Python
10.8 Supporting the Iterator Protocol 例文帳に追加
10.8 イテレータプロトコルをサポートする - Python
To this end, it implements the SPL interfaces Iterator, Countable, and ArrayAccess. 例文帳に追加
そのため、このパッケージは SPL インターフェイス群のうちIterator、Countable そして ArrayAccess を実装しています。 - PEAR
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.例文帳に追加
上位方向移動では、反復器は、初期化中に使用される記述子によって示される折たたみモデルに接続する隣接ポートを見つける。 - 特許庁
| Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved. |
| Copyright © Japan Patent office. All Rights Reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| 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. |
| Copyright © 2001 - 2008 by the PEAR Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ). |
| © 2010, Oracle Corporation and/or its affiliates. Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|
