| 1 | // Copyright 2018-2026 the Deno authors. MIT license. |
| 2 | import { assert, assertEquals, assertThrows } from "@std/assert"; |
| 3 | import { BinaryHeap } from "./binary_heap.ts"; |
| 4 | import { ascend, descend } from "./comparators.ts"; |
nothing calls this directly
no test coverage detected