NewHashSet will create a new hash set with the hash types supplied
(t ...Type)
| 309 | |
| 310 | // NewHashSet will create a new hash set with the hash types supplied |
| 311 | func NewHashSet(t ...Type) Set { |
| 312 | h := Set(None) |
| 313 | return h.Add(t...) |
| 314 | } |
| 315 | |
| 316 | // Add one or more hash types to the set. |
| 317 | // Returns the modified hash set. |
searching dependent graphs…