CreateIntSet - creates new int set with given int values.
(il ...int)
| 118 | |
| 119 | // CreateIntSet - creates new int set with given int values. |
| 120 | func CreateIntSet(il ...int) IntSet { |
| 121 | return IntSet(Create(il...)) |
| 122 | } |
| 123 | |
| 124 | // CopyIntSet - returns copy of given set. |
| 125 | func CopyIntSet(set IntSet) IntSet { |