NewIntSet - creates new int set.
()
| 113 | |
| 114 | // NewIntSet - creates new int set. |
| 115 | func NewIntSet() IntSet { |
| 116 | return IntSet(New[int]()) |
| 117 | } |
| 118 | |
| 119 | // CreateIntSet - creates new int set with given int values. |
| 120 | func CreateIntSet(il ...int) IntSet { |