소스 검색

more comments

d98762625 7 년 전
부모
커밋
e8bb9e264d
1개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 6 4
      src/core/operations/SetOperations.js

+ 6 - 4
src/core/operations/SetOperations.js

@@ -139,7 +139,7 @@ class SetOps {
      * Get elements of each set that aren't in the other set.
      * Get elements of each set that aren't in the other set.
      * @param {Object[]} a 
      * @param {Object[]} a 
      * @param {Object[]} b 
      * @param {Object[]} b 
-     * @return {Object}
+     * @return {Object[]}
      */
      */
     runSymmetricDifference(a, b) {
     runSymmetricDifference(a, b) {
         return this.runSetDifference(a,b)
         return this.runSetDifference(a,b)
@@ -148,8 +148,9 @@ class SetOps {
 
 
     /**
     /**
      * 
      * 
-     * @param {*} a 
-     * @param {*} b 
+     * @param {Object[]} a 
+     * @param {Object[]} b 
+     * @returns {String[]}
      */
      */
     runCartesianProduct(a, b) {
     runCartesianProduct(a, b) {
         return Array(Math.max(a.length, b.length))
         return Array(Math.max(a.length, b.length))
@@ -159,7 +160,8 @@ class SetOps {
 
 
     /**
     /**
      * 
      * 
-     * @param {*} a 
+     * @param {Object[]} a
+     * @returns {Object[]} 
      */
      */
     runPowerSet(delimiter) {
     runPowerSet(delimiter) {
         return function(a) {
         return function(a) {