UNPKG

333 BJavaScriptView Raw
1export var compositionDocs = {
2 name: 'composition',
3 category: 'Combinatorics',
4 syntax: ['composition(n, k)'],
5 description: 'The composition counts of n into k parts. composition only takes integer arguments. The following condition must be enforced: k <= n.',
6 examples: ['composition(5, 3)'],
7 seealso: ['combinations']
8};
\No newline at end of file