Versions in this module Expand all Collapse all v0 v0.1.1 May 29, 2024 Changes in this version type Heap + func (h *Heap[O, T]) FixTop(p O) + func (h *Heap[O, T]) Top() T + func (h *Heap[O, T]) TopPtr() *Elem[O, T] v0.1.0 May 29, 2024 Changes in this version + type Elem struct + type Heap struct + func New[O constraints.Ordered, T any](cap uint) *Heap[O, T] + func (h *Heap[O, T]) Cap() int + func (h *Heap[O, T]) Pop() T + func (h *Heap[O, T]) Push(p O, v T) + func (h *Heap[O, T]) Size() int + type Heap2 struct + func New2[P constraints.Ordered, V comparable](cap uint) *Heap2[P, V] + func (h *Heap2[P, V]) Del(v V) + func (h *Heap2[P, V]) Fix(p P, v V)