(n: number)
| 16 | |
| 17 | describe("HashSet", () => { |
| 18 | function value(n: number): Value { |
| 19 | return new Value(n) |
| 20 | } |
| 21 | |
| 22 | function makeTestHashSet(...values: Array<number>): HashSet.HashSet<Value> { |
| 23 | return HashSet.mutate<Value>((set) => { |
no outgoing calls
no test coverage detected