UNPKG

483 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.compositionDocs = void 0;
7var compositionDocs = {
8 name: 'composition',
9 category: 'Combinatorics',
10 syntax: ['composition(n, k)'],
11 description: 'The composition counts of n into k parts. composition only takes integer arguments. The following condition must be enforced: k <= n.',
12 examples: ['composition(5, 3)'],
13 seealso: ['combinations']
14};
15exports.compositionDocs = compositionDocs;
\No newline at end of file