Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
method BinaryHeap.prototype.pop
import { BinaryHeap } from "https://deno.land/std@0.148.0/collections/binary_heap.ts";

Removes the greatest value from the binary heap and returns it, or null if it is empty.

Returns

T | undefined