Versions in this module Expand all Collapse all v1 v1.11.1 Jun 10, 2024 Changes in this version + type Heap struct + func New[E any](less func(E, E) bool, capacity int) *Heap[E] + func (h *Heap[E]) Len() int + func (h *Heap[E]) Peek() E + func (h *Heap[E]) Pop() E + func (h *Heap[E]) Push(elem E)