// Code generated by 'yaegi extract container/heap'. DO NOT EDIT.

//go:build go1.22
// +build go1.22

package stdlib

import (
	
	
)

func init() {
	Symbols["container/heap/heap"] = map[string]reflect.Value{
		// function, constant and variable definitions
		"Fix":    reflect.ValueOf(heap.Fix),
		"Init":   reflect.ValueOf(heap.Init),
		"Pop":    reflect.ValueOf(heap.Pop),
		"Push":   reflect.ValueOf(heap.Push),
		"Remove": reflect.ValueOf(heap.Remove),

		// type definitions
		"Interface": reflect.ValueOf((*heap.Interface)(nil)),

		// interface wrapper definitions
		"_Interface": reflect.ValueOf((*_container_heap_Interface)(nil)),
	}
}

// _container_heap_Interface is an interface wrapper for Interface type
type _container_heap_Interface struct {
	IValue interface{}
	WLen   func() int
	WLess  func(i int, j int) bool
	WPop   func() any
	WPush  func(x any)
	WSwap  func(i int, j int)
}

func ( _container_heap_Interface) () int {
	return .WLen()
}
func ( _container_heap_Interface) ( int,  int) bool {
	return .WLess(, )
}
func ( _container_heap_Interface) () any {
	return .WPop()
}
func ( _container_heap_Interface) ( any) {
	.WPush()
}
func ( _container_heap_Interface) ( int,  int) {
	.WSwap(, )
}