Home
last modified time | relevance | path

Searched refs:arity (Results 1 – 25 of 41) sorted by relevance

12

/plugin/asciidocjs/node_modules/lodash/
D_createWrap.js51 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument
62 arity = arity === undefined ? arity : toInteger(arity);
75 argPos, ary, arity
86 arity = newData[9] = newData[9] === undefined
90 if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) {
96 result = createCurry(func, bitmask, arity);
Dcurry.js47 function curry(func, arity, guard) { argument
48 arity = guard ? undefined : arity;
49 … = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity);
DcurryRight.js44 function curryRight(func, arity, guard) { argument
45 arity = guard ? undefined : arity;
46 …ateWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity);
D_createCurry.js18 function createCurry(func, bitmask, arity) { argument
35 if (length < arity) {
38 args, holders, undefined, undefined, arity - length);
D_createHybrid.js38 …ybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { argument
65 if (isCurried && length < arity) {
69 args, newHolders, argPos, ary, arity - length
D_createRecurry.js30 …eateRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { argument
45 newHoldersRight, argPos, ary, arity
Dlodash.js5078 function createCurry(func, bitmask, arity) { argument
5095 if (length < arity) {
5098 args, holders, undefined, undefined, arity - length);
5206 …ybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { argument
5233 if (isCurried && length < arity) {
5237 args, newHolders, argPos, ary, arity - length
5443 …eateRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { argument
5458 newHoldersRight, argPos, ary, arity
5550 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument
5561 arity = arity === undefined ? arity : toInteger(arity);
[all …]
/plugin/ifauthex/lib/
Dparser.php238 public function arity() { return $this->_arity; } function in AST\\ElementDefinition
245 public function __construct($name, $fixing, $tokenDefs, $priority, $arity=null, $nested=null) { argument
252 if ($arity === null) {
255 $arity = 0;
259 $arity = 1;
262 $arity = -1;
273 $this->_arity = $arity;
280 if ($this->arity() != 0) {
288 if ($this->arity() == 0) {
291 if (count($this->tokenDefs()) != 1 && count($this->tokenDefs()) != $this->arity()) {
[all …]
Dexceptions.php67 if ($elementDefinition->arity() > 0) {
68 $message .= ' Expected ' . $elementDefinition->arity() . ' arguments.';
/plugin/asciidocjs/node_modules/async/internal/
Dawaitify.js9 function awaitify(asyncFn, arity = asyncFn.length) { argument
10 if (!arity) throw new Error('arity is undefined');
12 if (typeof args[arity - 1] === 'function') {
17 args[arity - 1] = (err, ...cbArgs) => {
/plugin/asciidocjs/node_modules/async/
Dretryable.js58 let arity = opts && opts.arity || task.length;
60 arity += 1;
64 if (args.length < arity - 1 || callback == null) {
/plugin/asciidocjs/node_modules/lodash/fp/
D_baseConvert.js211 arity = arguments[1],
212 result = iteratee(func, arity),
215 if (config.cap && typeof arity == 'number') {
216 arity = arity > 2 ? (arity - 2) : 1;
217 return (length && length <= arity) ? result : baseAry(result, arity);
250 var arity = n < 0 ? 1 : (toInteger(n) + 1);
251 return curry(nthArg(n), arity);
256 var arity = indexes ? indexes.length : 0;
257 return curry(rearg(func, indexes), arity);
/plugin/sequencediagram/bower_components/lodash/fp/
D_baseConvert.js211 arity = arguments[1],
212 result = iteratee(func, arity),
215 if (config.cap && typeof arity == 'number') {
216 arity = arity > 2 ? (arity - 2) : 1;
217 return (length && length <= arity) ? result : baseAry(result, arity);
250 var arity = n < 0 ? 1 : (toInteger(n) + 1);
251 return curry(nthArg(n), arity);
256 var arity = indexes ? indexes.length : 0;
257 return curry(rearg(func, indexes), arity);
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.fp.js291 arity = arguments[1],
292 result = iteratee(func, arity),
295 if (config.cap && typeof arity == 'number') {
296 arity = arity > 2 ? (arity - 2) : 1;
297 return (length && length <= arity) ? result : baseAry(result, arity);
330 var arity = n < 0 ? 1 : (toInteger(n) + 1);
331 return curry(nthArg(n), arity);
336 var arity = indexes ? indexes.length : 0;
337 return curry(rearg(func, indexes), arity);
Dlodash.js5016 function createCurry(func, bitmask, arity) { argument
5033 if (length < arity) {
5036 args, holders, undefined, undefined, arity - length);
5144 …ybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { argument
5171 if (isCurried && length < arity) {
5175 args, newHolders, argPos, ary, arity - length
5381 …eateRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { argument
5396 newHoldersRight, argPos, ary, arity
5488 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument
5499 arity = arity === undefined ? arity : toInteger(arity);
[all …]
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/doc/
Dwiki.jst84 Methods with a fixed arity of one:<br>
87 Methods with a fixed arity of two:<br>
90 Methods with a fixed arity of three:<br>
93 Methods with a fixed arity of four:<br>
115 A fixed arity of two has an argument order of:<br>
118 A fixed arity of three has an argument order of:<br>
121 A fixed arity of four has an argument order of:<br>
190 // Specify fixed arity.
/plugin/findologicxmlexport/vendor/hoa/protocol/
DWrapper.php186 $arity = count($values);
188 if (0 === $arity) {
190 } elseif (1 === $arity) {
/plugin/asciidocjs/node_modules/async/dist/
Dasync.js207 function awaitify (asyncFn, arity = asyncFn.length) { argument
208 if (!arity) throw new Error('arity is undefined')
210 if (typeof args[arity - 1] === 'function') {
215 args[arity - 1] = (err, ...cbArgs) => {
4723 let arity = (opts && opts.arity) || task.length;
4725 arity += 1;
4729 if (args.length < arity - 1 || callback == null) {
Dasync.mjs201 function awaitify (asyncFn, arity = asyncFn.length) { argument
202 if (!arity) throw new Error('arity is undefined')
204 if (typeof args[arity - 1] === 'function') {
209 args[arity - 1] = (err, ...cbArgs) => {
4695 * options, exactly the same as from `retry`, except for a `opts.arity` that
4696 * is the arity of the `task` function, defaulting to `task.length`
4717 let arity = (opts && opts.arity) || task.length;
4719 arity += 1;
4723 if (args.length < arity - 1 || callback == null) {
/plugin/sequencediagram/bower_components/lodash/
Dlodash.js5016 function createCurry(func, bitmask, arity) { argument
5033 if (length < arity) {
5036 args, holders, undefined, undefined, arity - length);
5144 …ybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { argument
5171 if (isCurried && length < arity) {
5175 args, newHolders, argPos, ary, arity - length
5381 …eateRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { argument
5396 newHoldersRight, argPos, ary, arity
5488 function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { argument
5499 arity = arity === undefined ? arity : toInteger(arity);
[all …]
Dyarn.lock240 babel-helper-get-function-arity "^6.18.0"
246 babel-helper-get-function-arity@^6.18.0:
248 … "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6…
536 babel-helper-get-function-arity "^6.18.0"
/plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/
Dindex.mjs1850 block.$$arity = blockopts;
2173 alias.$$arity = body.$$arity == null ? body.length : body.$$arity;
3437 body.$$arity = 0;
3463 body.$$arity = 1;
3699 …return $send(bound, 'call', $to_a(args));}, {$$arity: -1, $$s: self})) : ($Kernel.$raise($$$('Type…
9087 };}, {$$arity: -1, $$ret: $t_return});
9098 };}, {$$arity: -1, $$ret: $t_return});
9109 };}, {$$arity: -1, $$ret: $t_return});
9135 };}, {$$arity: -1, $$ret: $t_return});
9146 };}, {$$arity: -1, $$ret: $t_return});
[all …]
Dindex.cjs1859 block.$$arity = blockopts;
2182 alias.$$arity = body.$$arity == null ? body.length : body.$$arity;
3446 body.$$arity = 0;
3472 body.$$arity = 1;
3708 …return $send(bound, 'call', $to_a(args));}, {$$arity: -1, $$s: self})) : ($Kernel.$raise($$$('Type…
9096 };}, {$$arity: -1, $$ret: $t_return});
9107 };}, {$$arity: -1, $$ret: $t_return});
9118 };}, {$$arity: -1, $$ret: $t_return});
9144 };}, {$$arity: -1, $$ret: $t_return});
9155 };}, {$$arity: -1, $$ret: $t_return});
[all …]
/plugin/sequencediagram/bower_components/lodash/test/
Dtest-fp.js343 arity = _[key].length;
345 return arity != 0 && arity < aryCap;
/plugin/fetchmedia/
Dyarn.lock270 babel-helper-get-function-arity "^6.24.1"
276 babel-helper-get-function-arity@^6.24.1:
278 … "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6…
494 babel-helper-get-function-arity "^6.24.1"

12