setPowerset.js 533 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.setPowersetDocs = void 0;
  6. var setPowersetDocs = {
  7. name: 'setPowerset',
  8. category: 'Set',
  9. syntax: ['setPowerset(set)'],
  10. 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.',
  11. examples: ['setPowerset([1, 2, 3])'],
  12. seealso: ['setCartesian']
  13. };
  14. exports.setPowersetDocs = setPowersetDocs;