setDifference.js 654 B

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