IsProperSupersetOf: checks whether set is proper superset of set2 or not. ex: [1,2,3,4] proper superset of [1,2,3] -> true
(set2 Set[T])
| 36 | // IsProperSupersetOf: checks whether set is proper superset of set2 or not. |
| 37 | // ex: [1,2,3,4] proper superset of [1,2,3] -> true |
| 38 | IsProperSupersetOf(set2 Set[T]) bool |
| 39 | // Union: gives new union set of both sets. |
| 40 | // ex: [1,2,3] union [3,4,5] -> [1,2,3,4,5] |
| 41 | Union(set2 Set[T]) Set[T] |
no outgoing calls