UNPKG

576 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.bellNumbersDocs = void 0;
7var bellNumbersDocs = {
8 name: 'bellNumbers',
9 category: 'Combinatorics',
10 syntax: ['bellNumbers(n)'],
11 description: 'The Bell Numbers count the number of partitions of a set. A partition is a pairwise disjoint subset of S whose union is S. `bellNumbers` only takes integer arguments. The following condition must be enforced: n >= 0.',
12 examples: ['bellNumbers(3)', 'bellNumbers(8)'],
13 seealso: ['stirlingS2']
14};
15exports.bellNumbersDocs = bellNumbersDocs;
\No newline at end of file