/** * Construct a new `HashSet` from a variable number of values. * * @tsplus static HashSet.Ops __call * @tsplus static HashSet.Ops make */ export function make(...elements: As): HashSet { const set = HashSet.empty().beginMutation for (const v of elements) { set.add(v) } return set.endMutation }