Module

std/data_structures/mod.ts>BinaryHeap#pop

The Deno Standard Library
Latest
method BinaryHeap.prototype.pop
import { BinaryHeap } from "https://dotland.deno.dev/std@0.224.0/data_structures/mod.ts";

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

Returns

T | undefined