setIntersect.js 573 B

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