22 lines
433 B
Go
22 lines
433 B
Go
// Code generated by 'yaegi extract container/list'. DO NOT EDIT.
|
|
|
|
// +build go1.14,!go1.15
|
|
|
|
package stdlib
|
|
|
|
import (
|
|
"container/list"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Symbols["container/list"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"New": reflect.ValueOf(list.New),
|
|
|
|
// type definitions
|
|
"Element": reflect.ValueOf((*list.Element)(nil)),
|
|
"List": reflect.ValueOf((*list.List)(nil)),
|
|
}
|
|
}
|