rust2015user rust2018user src tests .travis.yml Cargo.toml LICENSE-APACHE LICENSE-MIT README.rst maplit Container / collection literal macros forHashMap,HashSet,BTreeMap,BTreeSet. You can use these for convenience. Using them has no other implications. ...
package main import "github.com/emirpasic/gods/sets/hashset" func main() { set := hashset.New() // empty set.Add(1) // 1 set.Add(2, 2, 3, 4, 5) // 3, 1, 2, 4, 5 (random order, duplicates ignored) set.Remove(4) // 5, 3, 2, 1 (random order) set.Remove(2, 3...