setIsSubset.js 625 B

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