method BinaryHeap.prototype.popimport { BinaryHeap } from "https://dotland.deno.dev/std@0.131.0/collections/binary_heap.ts"; pop(): T | undefinedRemoves the greatest value from the binary heap and returns it, or null if it is empty. Removes the greatest value from the binary heap and returns it, or null if it is empty. ReturnsT | undefined