simple-squiggle

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

setPowerset.js (533B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.setPowersetDocs = void 0;
      7 var setPowersetDocs = {
      8   name: 'setPowerset',
      9   category: 'Set',
     10   syntax: ['setPowerset(set)'],
     11   description: 'Create the powerset of a (multi)set: the powerset contains very possible subsets of a (multi)set. A multi-dimension array will be converted to a single-dimension array before the operation.',
     12   examples: ['setPowerset([1, 2, 3])'],
     13   seealso: ['setCartesian']
     14 };
     15 exports.setPowersetDocs = setPowersetDocs;