/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/ |
H A D | Each.php | 20 * @param mixed $iterable Iterator or array to iterate over. 27 $iterable, argument 31 return (new EachPromise($iterable, [ 45 * @param mixed $iterable 53 $iterable, argument 58 return (new EachPromise($iterable, [ 70 * @param mixed $iterable 77 $iterable, argument 82 $iterable,
|
H A D | EachPromise.php | 16 private $iterable; variable in GuzzleHttp\\Promise\\EachPromise 51 * @param mixed $iterable Promises or values to iterate. 54 public function __construct($iterable, array $config = []) argument 56 $this->iterable = Create::iterFor($iterable); 81 $this->iterable->rewind(); 125 $this->iterable = $this->concurrency = $this->pending = null; 163 if (!$this->iterable || !$this->iterable->valid()) { 167 $promise = Create::promiseFor($this->iterable->current()); 168 $key = $this->iterable->key(); 213 $this->iterable->next(); [all …]
|
H A D | functions.php | 148 * @param iterable<PromiseInterface> $promises Iterable of PromiseInterface objects to wait on. 252 * @param mixed $iterable Iterator or array to iterate over. 261 $iterable, argument 265 return Each::of($iterable, $onFulfilled, $onRejected); 276 * @param mixed $iterable 286 $iterable, argument 291 return Each::ofLimit($iterable, $concurrency, $onFulfilled, $onRejected); 299 * @param mixed $iterable 308 $iterable, argument 312 return Each::ofLimitAll($iterable, $concurrency, $onFulfilled);
|
/plugin/commonmark/vendor/league/commonmark/src/ |
H A D | EnvironmentInterface.php |
|
H A D | Environment.php |
|
H A D | ElementRendererInterface.php |
|
H A D | HtmlRenderer.php |
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/ |
H A D | iterable.test | 2 "iterable" test 4 {{ foo is iterable ? 'ok' : 'ko' }} 5 {{ traversable is iterable ? 'ok' : 'ko' }} 6 {{ obj is iterable ? 'ok' : 'ko' }} 7 {{ val is iterable ? 'ok' : 'ko' }}
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/ |
H A D | iterable.rst | 1 ``iterable`` 5 The iterable test was added in Twig 1.7. 7 ``iterable`` checks if a variable is an array or a traversable object: 11 {# evaluates to true if the foo variable is iterable #} 12 {% if users is iterable %}
|
H A D | index.rst | 12 iterable
|
/plugin/commonmark/vendor/league/commonmark/src/Util/ |
H A D | PrioritizedList.php |
|
/plugin/commonmark/vendor/league/commonmark/src/Input/ |
H A D | MarkdownInputInterface.php | 21 * @return iterable<int, string> 23 public function getLines(): iterable;
|
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/ |
H A D | Pool.php | 54 $iterable = \GuzzleHttp\Promise\iter_for($requests); 55 $requests = function () use ($iterable, $client, $opts) { 56 foreach ($iterable as $key => $rfn) {
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/InlinesOnly/ |
H A D | ChildRenderer.php |
|
/plugin/authgooglesheets/vendor/google/auth/src/Cache/ |
H A D | MemoryCacheItemPool.php | 51 * @return iterable<CacheItemInterface> 57 public function getItems(array $keys = []): iterable
|
H A D | SysVCacheItemPool.php | 106 * @return iterable<CacheItemInterface> 108 public function getItems(array $keys = []): iterable
|
/plugin/commonmark/vendor/league/commonmark/src/Node/ |
H A D | Node.php | 160 public function children(): iterable 210 * @param iterable<Node> $children 212 public function replaceChildren(iterable $children): void
|
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/ |
H A D | DWRenderer.php | 65 public function renderNodes(iterable $nodes): string
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/ |
H A D | iterable.test | 2 "with" tag with an iterable expression
|
/plugin/commonmark/vendor/league/commonmark/src/Reference/ |
H A D | ReferenceMapInterface.php |
|
H A D | ReferenceMap.php |
|
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/ |
H A D | TableRow.php |
|
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/ |
H A D | Set.php | 98 * @param iterable<Hashable> $values 100 public function addAll(iterable $values) : void
|
/plugin/sequencediagram/bower_components/lodash/dist/ |
H A D | lodash.core.js | 1049 iterable = Object(collection); 1052 if (iteratee(iterable[index], index, iterable) === false) { 1070 iterable = Object(object), 1076 if (iteratee(iterable[key], key, iterable) === false) { 1116 var iterable = Object(collection); 1120 predicate = function(key) { return iteratee(iterable[key], key, iterable); }; 1123 return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/ |
H A D | objects.test | 2 "for" tag iterates over iterable objects
|