type container/heap.Interface

8 uses

	container/heap (current package)
		heap.go#L32: type Interface interface {
		heap.go#L42: func Init(h Interface) {
		heap.go#L52: func Push(h Interface, x any) {
		heap.go#L60: func Pop(h Interface) any {
		heap.go#L69: func Remove(h Interface, i int) any {
		heap.go#L84: func Fix(h Interface, i int) {
		heap.go#L90: func up(h Interface, j int) {
		heap.go#L101: func down(h Interface, i0, n int) bool {