IsSupersetOf: checks whether set is superset of set2 or not.
(set2 Set[T])
| 33 | IsProperSubsetOf(set2 Set[T]) bool |
| 34 | // IsSupersetOf: checks whether set is superset of set2 or not. |
| 35 | IsSupersetOf(set2 Set[T]) bool |
| 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 |
no outgoing calls