simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

catalan.js (496B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.catalanDocs = void 0;
      7 var catalanDocs = {
      8   name: 'catalan',
      9   category: 'Combinatorics',
     10   syntax: ['catalan(n)'],
     11   description: 'The Catalan Numbers enumerate combinatorial structures of many different types. catalan only takes integer arguments. The following condition must be enforced: n >= 0.',
     12   examples: ['catalan(3)', 'catalan(8)'],
     13   seealso: ['bellNumbers']
     14 };
     15 exports.catalanDocs = catalanDocs;