simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

setSymDifference.js (629B)


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