()
| 69 | } |
| 70 | |
| 71 | function randomHashMap(): HashMap.HashMap<number, number> { |
| 72 | return pipe( |
| 73 | Arr.fromIterable(Array.from({ length: 2 }, smallInt)), |
| 74 | Arr.cartesian(Arr.fromIterable(Array.from({ length: 2 }, smallInt))), |
| 75 | HashMap.fromIterable |
| 76 | ) |
| 77 | } |
| 78 | |
| 79 | function randomHashSet(): HashSet.HashSet<number> { |
| 80 | return HashSet.fromIterable(Array.from({ length: 20 }, smallInt)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…