検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 32 for yield (0.007 sec.)
ジェネレータの戻り値を取得する 7877
« Generator::current Generator::key » PHP Manual Generator ジェネレータの戻り値を取得する Genera ... rator::getReturn() の例 <?php $gen = (function() { yield 1 ; yield 2 ; return 3 ; })(); foreach ( $gen as $ ...
https://man.plustar.jp/php/generator.getreturn.html - [similar]
演算子の優先順位 7877
« 演算子 算術演算子 » PHP Manual 演算子 演算子の優先順位 演算子の優先順位 演算子の優先順位は、二 ... **= /= .= %= &= |= ^= <<= >>= ??= 代入演算子 (n/a) yield from yield from (n/a) yield yield (n/a) print prin ... キーワード: 結合 , 評価 , 算術 , バージョン , 括弧 , yield , コード , 加算 , 推奨 , 連結 ...
https://man.plustar.jp/php/language.operators.precedence.html - [similar]
下位互換性のない変更点 7732
« PHP 5.6.x から PHP 7.0.x への移行 新機能 » PHP Manual PHP 5.6.x から PHP 7.0.x への移行 下位互 ... ned variable: this in /tmp/test.php on line 3 NULL yield が右代入演算子に yield で括弧が必須ではなくなり、右 ... って、以下のように振る舞いが変わります。 <?php echo yield - 1 ; // 以前はこのように解釈されました echo (yiel ... d) - 1 ; // PHP 7 ではこのように解釈されます echo yield (- 1 ); yield $foo or die; // 以前はこのように解釈 ... されました yield ( $foo or die); // PHP 7 ではこのように解釈されます ...
https://man.plustar.jp/php/migration70.incompatible.html - [similar]
ジェネレータとは 7684
« ジェネレータ ジェネレータの構文 » PHP Manual ジェネレータ ジェネレータとは ジェネレータとは (P ... 一度だけ return するのではなく、必要に応じて何度でも yield することができます。 つまり、値を繰り返し返せるとい ... for ( $i = $start ; $i <= $limit ; $i += $step ) { yield $i ; } } else { if ( $step >= 0 ) { throw new Logi ... for ( $i = $start ; $i >= $limit ; $i += $step ) { yield $i ; } } } /* * 次の例で、range() と xrange() が同 ...
https://man.plustar.jp/php/language.generators.overview.html - [similar]
はじめに 7539
« parallel Installation » PHP Manual parallel はじめに はじめに parallel is a parallel concurren ... re some instructions that are prohibited in tasks: yield use by-reference declare class declare named funct ... ion 注意 : Nested closures may yield or use by-reference, but must not contain class or ... from and write to objects as they become available yielding parallel\Events\Event objects describing the op ...
https://man.plustar.jp/php/intro.parallel.html - [similar]
Execution 7539
« parallel\Runtime::__construct parallel\Runtime::close » PHP Manual parallel\Runtime Execution ... d in Closures intended for parallel execution are: yield use by-reference declare class declare named funct ... ion 注意 : Nested closures may yield or use by-reference, but must not contain class or ...
https://man.plustar.jp/php/parallel-runtime.run.html - [similar]
パーサトークンの一覧 7539
« PHP 型の比較表 ユーザーレベルでの命名の手引き » PHP Manual 付録 パーサトークンの一覧 パーサトー ... e T_WHITESPACE \t \r\n T_XOR_EQUAL ^= 代入演算子 T_YIELD yield ジェネレータ T_YIELD_FROM yield from ジェネレ ...
https://man.plustar.jp/php/tokens.html - [similar]
Execution 7507
« parallel\bootstrap parallel\Runtime » PHP Manual Functional API Execution parallel\run (1.0.0) ... d in Closures intended for parallel execution are: yield use by-reference declare class declare named funct ... ion 注意 : Nested closures may yield or use by-reference, but must not contain class or ...
https://man.plustar.jp/php/parallel.run.html - [similar]
ReflectionGenerator オブジェクトを構築する 7217
« ReflectionGenerator ReflectionGenerator::getExecutingFile » PHP Manual ReflectionGenerator Ref ... erator::__construct() の例 <?php function gen () { yield 1 ; } $gen = gen (); $reflectionGen = new Reflecti ...
https://man.plustar.jp/php/reflectiongenerator.construct.html - [similar]
現在実行中のジェネレータの行を取得する 7217
« ReflectionGenerator::getExecutingGenerator ReflectionGenerator::getFunction » PHP Manual Refle ... <?php class GenExample { public function gen () { yield 1 ; } } $gen = (new GenExample )-> gen (); $reflec ...
https://man.plustar.jp/php/reflectiongenerator.getexecutingline.html - [similar]
PREV 1 2 3 4 NEXT