type container/heap.Interface

8 uses

	container/heap (current package)
		heap.go#L31: type Interface interface {
		heap.go#L41: func Init(h Interface) {
		heap.go#L51: func Push(h Interface, x any) {
		heap.go#L59: func Pop(h Interface) any {
		heap.go#L68: func Remove(h Interface, i int) any {
		heap.go#L83: func Fix(h Interface, i int) {
		heap.go#L89: func up(h Interface, j int) {
		heap.go#L100: func down(h Interface, i0, n int) bool {