Home
last modified time | relevance | path

Searched refs:iterable (Results 1 – 25 of 78) sorted by relevance

1234

/plugin/authgooglesheets/vendor/guzzlehttp/promises/src/
H A DEach.php20 * @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 DEachPromise.php16 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 Dfunctions.php148 * @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 DEnvironmentInterface.php
H A DEnvironment.php
H A DElementRendererInterface.php
H A DHtmlRenderer.php
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Diterable.test2 "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 Diterable.rst1 ``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 Dindex.rst12 iterable
/plugin/commonmark/vendor/league/commonmark/src/Util/
H A DPrioritizedList.php
/plugin/commonmark/vendor/league/commonmark/src/Input/
H A DMarkdownInputInterface.php21 * @return iterable<int, string>
23 public function getLines(): iterable;
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A DPool.php54 $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 DChildRenderer.php
/plugin/authgooglesheets/vendor/google/auth/src/Cache/
H A DMemoryCacheItemPool.php51 * @return iterable<CacheItemInterface>
57 public function getItems(array $keys = []): iterable
H A DSysVCacheItemPool.php106 * @return iterable<CacheItemInterface>
108 public function getItems(array $keys = []): iterable
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNode.php160 public function children(): iterable
210 * @param iterable<Node> $children
212 public function replaceChildren(iterable $children): void
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DDWRenderer.php65 public function renderNodes(iterable $nodes): string
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/
H A Diterable.test2 "with" tag with an iterable expression
/plugin/commonmark/vendor/league/commonmark/src/Reference/
H A DReferenceMapInterface.php
H A DReferenceMap.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableRow.php
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Utils/
H A DSet.php98 * @param iterable<Hashable> $values
100 public function addAll(iterable $values) : void
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.core.js1049 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 Dobjects.test2 "for" tag iterates over iterable objects

1234