setDifference.js (654B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.setDifferenceDocs = void 0; 7 var setDifferenceDocs = { 8 name: 'setDifference', 9 category: 'Set', 10 syntax: ['setDifference(set1, set2)'], 11 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.', 12 examples: ['setDifference([1, 2, 3, 4], [3, 4, 5, 6])', 'setDifference([[1, 2], [3, 4]], [[3, 4], [5, 6]])'], 13 seealso: ['setUnion', 'setIntersect', 'setSymDifference'] 14 }; 15 exports.setDifferenceDocs = setDifferenceDocs;