setSymDifference.js 464 B

12345678
  1. export var setSymDifferenceDocs = {
  2. name: 'setSymDifference',
  3. category: 'Set',
  4. syntax: ['setSymDifference(set1, set2)'],
  5. description: 'Create the symmetric difference of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.',
  6. examples: ['setSymDifference([1, 2, 3, 4], [3, 4, 5, 6])', 'setSymDifference([[1, 2], [3, 4]], [[3, 4], [5, 6]])'],
  7. seealso: ['setUnion', 'setIntersect', 'setDifference']
  8. };