(...values: Array<number>)
| 20 | } |
| 21 | |
| 22 | function makeTestHashSet(...values: Array<number>): HashSet.HashSet<Value> { |
| 23 | return HashSet.mutate<Value>((set) => { |
| 24 | for (const _value of values) { |
| 25 | HashSet.add(value(_value))(set) |
| 26 | } |
| 27 | })(HashSet.empty()) |
| 28 | } |
| 29 | |
| 30 | it("toString", () => { |
| 31 | const map = HashSet.make(0, "a") |
no test coverage detected