Home
last modified time | relevance | path

Searched refs:how_many (Results 1 – 5 of 5) sorted by relevance

/plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/
Dopal.js14408 function descending_factorial(from, how_many) { argument
14409 var count = how_many >= 0 ? 1 : 0;
14410 while (how_many) {
14413 how_many--;
Dindex.mjs13655 // Returns the product of from, from-1, ..., from - how_many + 1.
13656 function descending_factorial(from, how_many) { argument
13657 var count = how_many >= 0 ? 1 : 0;
13658 while (how_many) {
13661 how_many--;
Dindex.cjs13664 // Returns the product of from, from-1, ..., from - how_many + 1.
13665 function descending_factorial(from, how_many) {
13666 var count = how_many >= 0 ? 1 : 0;
13667 while (how_many) {
13670 how_many--;
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/graalvm/
Dasciidoctor.js14408 function descending_factorial(from, how_many) { argument
14409 var count = how_many >= 0 ? 1 : 0;
14410 while (how_many) {
14413 how_many--;
/plugin/asciidocjs/node_modules/@asciidoctor/core/dist/browser/
Dasciidoctor.js14411 function descending_factorial(from, how_many) { argument
14412 var count = how_many >= 0 ? 1 : 0;
14413 while (how_many) {
14416 how_many--;