currently, hashset can only insert one element at a time: https://github.com/dlang-community/containers/blob/fc1625a5a0c253272b80addfb4107928495fd647/src/containers/hashset.d#L150 ``` HashSet!string set; set.insert("foo"); set.insert("bar"); ``` Can we add another method, so we can insert multiple elements all at once? e.g. ``` set.insert(["foo", "bar", "foo"]); ``` Thanks.