setDistinct.js 492 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.setDistinctDocs = void 0;
  6. var setDistinctDocs = {
  7. name: 'setDistinct',
  8. category: 'Set',
  9. syntax: ['setDistinct(set)'],
  10. description: 'Collect the distinct elements of a multiset. A multi-dimension array will be converted to a single-dimension array before the operation.',
  11. examples: ['setDistinct([1, 1, 1, 2, 2, 3])'],
  12. seealso: ['setMultiplicity']
  13. };
  14. exports.setDistinctDocs = setDistinctDocs;