setCartesian.js 594 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.setCartesianDocs = void 0;
  6. var setCartesianDocs = {
  7. name: 'setCartesian',
  8. category: 'Set',
  9. syntax: ['setCartesian(set1, set2)'],
  10. description: 'Create the cartesian product of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays and the values will be sorted in ascending order before the operation.',
  11. examples: ['setCartesian([1, 2], [3, 4])'],
  12. seealso: ['setUnion', 'setIntersect', 'setDifference', 'setPowerset']
  13. };
  14. exports.setCartesianDocs = setCartesianDocs;