GENERATOR FUNCTION Meaning in Japanese - translations and usage examples

['dʒenəreitər 'fʌŋkʃn]
['dʒenəreitər 'fʌŋkʃn]
ジェネレーター関数は

Examples of using Generator function in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
Generator function" creates"generator object".
ジェネレータ関数"は"ジェネレータオブジェクト"を生成します。
Any function containing a yield keyword is a generator function;
Yieldキーワードを含む関数はすべてジェネレータ関数です;
Generator functions are written using the function* syntax.
ジェネレーター関数は、function*構文を使用して記述されます。
Generator comprehensions can also be replaced with generator functions.
ジェネレーター内包もジェネレーター関数で置き換えられます。
In JavaScript every generator function is actually a GeneratorFunction object.
JavaScriptでは、あらゆるジェネレーター関数は実際にGeneratorFunctionオブジェクトです。
This is different from using eval with code for a generator function expression.
これはジェネレーター関数表現に対するコードでevalを使うのとは違います。
This Path Data Generator Function will take our data and generate the necessary SVG Path commands.
このPathDataGenerator関数は、データを受け取り必要なSVGPathコマンドを生成します。
The company has newly added a voice mapping feature anda low bitrate video generator function for video previewing.
今回同社では「音声マッピング」機能と映像プレビュー用の「低ビットレート映像生成」機能を新たに追加した。
When a generator function is called for the first time, an object of the internal Generator class is returned.
ジェネレータ関数を最初に呼んだときには、内部クラスGeneratorのオブジェクトを返します。
To create a lazy collection instance,you should pass a PHP generator function to the collection's make method:.
レイジーコレクションインスタンスを生成するには、コレクションのmakeメソッドへPHPジェネレータ関数を渡します。
When a generator function is resumed with a next() method, the current yield expression always evaluates to None.
ジェネレータ関数が__next__()メソッドによって再開された時、その時点のyield式の値は常にNoneと評価されます。
To create a generator, we need a special syntax construct: function*,so-called“generator function”.
ジェネレータを作成するには、特別な構文構造:function*、いわゆる“ジェネレータ関数”を使用する必要があります。
The body of the generator function is executed by calling the generator's next() method repeatedly until it raises an exception.
ジェネレータ関数の本体は、ジェネレータのnext()が例外を発行するまで繰り返し呼び出して実行します。
So far, the most important thing to understand is that generator functions, unlike regular function, do not run the code.
これまでのところ、理解すべき最も重要なことは、ジェネレータ関数は通常の関数とは異なり、コードを実行しないことです。
Inside a generator function, return value causes StopIteration(value) to be raised from the__next__() method.
ジェネレータ関数の中では、returnvalueは__next__()メソッドから送出されたStopIteration(value)を引き起こします。
Asynchronous generator iteratorAn object created by a asynchronous generator function.
Asynchronousgeneratoriterator(非同期ジェネレータイテレータ)asynchronousgenerator関数で生成されるオブジェクトです。
If the generator function does not catch the passed-in exception, or raises a different exception, then that exception propagates to the caller.
ジェネレータ関数が渡された例外を捕捉しない、もしくは違う例外を発生させるなら、その例外は呼び出し元へ伝搬されます。
GeneratorFunction- JavaScript| MDN The GeneratorFunction constructor creates a new generator function object.
GeneratorFunction-JavaScript|MDNGeneratorFunctionコンストラクターは新しいジェネレーター関数オブジェクトを生成します。
When called initially, generator functions do not execute any of their code, instead returning a type of iterator called a Generator..
最初に呼び出されると、ジェネレータ関数はコードを実行せず、ジェネレーターと呼ばれるある種のイテレーターを返します。
When a value isconsumed by calling the generator's next method, the Generator function executes until it encounters the yield keyword.
ジェネレーターのnextメソッドを呼び出すことによって値が消費されると、ジェネレーター関数はyieldキーワードを検出するまで実行します。
When called initially, generator functions do not execute any of their code, instead returning a type of iterator called a Generator..
最初に呼び出されると、ジェネレーター関数はコードを実行せず、ジェネレーターと呼ばれるある種のイテレーターを返します。
This option adds(1) a GPS lock function, which locks to the frequency and time that can be obtained from GPS,(2) a 10 MHz CW lock function, and(3)time code generator function.
本オプションを実装することによって、GPSから得られる周波数と時刻にロックするGPSロック機能と、10MHzCWロック機能、およびタイムコードジェネレーター機能を追加できます。
The body of the generator function is executed by calling the next()function on the generator repeatedly until it raises an exception.
ジェネレータ関数の本体は、ジェネレータのnext()が例外を発行するまで繰り返し呼び出して実行します。
Calling the next() method with an argument will resume the generator function execution, replacing the yield expression where execution was paused with the argument from next.
引数つきでnext()を呼ぶとジェネレーター関数の実行が再開され、処理が停止していたyield式をnext()の引数で置き換えます。
The generator functions generate values for database fields, which do not have any input data from the Schema, database or EDI source component.
Generator関数により、スキーマやデータベース、またはEDIソースコンポーネントからの入力を一切持たないデータベースフィールドの値が生成されます。
The Generator object is returned by a generator function and it conforms to both the iterable protocol and the iterator protocol.
Generator-JavaScript|MDN概要Generatorオブジェクトはジェネレーター関数によって返され、iterableプロトコルとiteratorプロトコルの両方に従います。
Generator functions provide a powerful alternative: they allow you to define an iterative algorithm by writing a single function whose execution is not continuous.
ジェネレーター関数は強力な代替手段を提供します。実行が連続していない単一の関数を記述することによって反復アルゴリズムを定義できます。
Description The yield keyword pauses generator function execution and the value of the expression following the yield keyword is returned to the generator's caller.
説明yieldキーワードは、ジェネレーター関数の実行を一時停止し、ジェネレーターの呼び出し元にyieldキーワードに続く値を戻します。
The end of the generator function is reached; in this case, execution of the generator ends and an IteratorResult is returned to the caller in which the value is undefined and done is true.
ジェネレーター関数の終わり:この場合、ジェネレーターの実行は終了し、valueにundefinedが、done にtrueが代入されたIteratorResultオブジェクトが呼び出し元に返ります。
Attach generators function and to motorboats boats at several speeds on streams to perform detailed tests.
ジェネレーター関数をアタッチし、詳細なテストを実行するためのストリームのいくつかの速度でモーターボート船。
Results: 250, Time: 0.0361

Word-for-word translation

Top dictionary queries

English - Japanese