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