| /plugin/asciidocjs/node_modules/lodash/ |
| D | _createWrap.js | 51 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);
|
| D | curry.js | 47 function curry(func, arity, guard) { argument 48 arity = guard ? undefined : arity; 49 … = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity);
|
| D | curryRight.js | 44 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.js | 18 function createCurry(func, bitmask, arity) { argument 35 if (length < arity) { 38 args, holders, undefined, undefined, arity - length);
|
| D | _createHybrid.js | 38 …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.js | 30 …eateRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { argument 45 newHoldersRight, argPos, ary, arity
|
| D | lodash.js | 5078 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/ |
| D | parser.php | 238 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 …]
|
| D | exceptions.php | 67 if ($elementDefinition->arity() > 0) { 68 $message .= ' Expected ' . $elementDefinition->arity() . ' arguments.';
|
| /plugin/asciidocjs/node_modules/async/internal/ |
| D | awaitify.js | 9 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/ |
| D | retryable.js | 58 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.js | 211 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.js | 211 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/ |
| D | lodash.fp.js | 291 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);
|
| D | lodash.js | 5016 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/ |
| D | wiki.jst | 84 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/ |
| D | Wrapper.php | 186 $arity = count($values); 188 if (0 === $arity) { 190 } elseif (1 === $arity) {
|
| /plugin/asciidocjs/node_modules/async/dist/ |
| D | async.js | 207 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) {
|
| D | async.mjs | 201 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/ |
| D | lodash.js | 5016 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 …]
|
| D | yarn.lock | 240 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/ |
| D | index.mjs | 1850 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 …]
|
| D | index.cjs | 1859 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/ |
| D | test-fp.js | 343 arity = _[key].length; 345 return arity != 0 && arity < aryCap;
|
| /plugin/fetchmedia/ |
| D | yarn.lock | 270 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"
|