github.com/goplus/gossa@v0.3.25/pkg/container/ring/go116_export.go (about)

     1  // export by github.com/goplus/gossa/cmd/qexp
     2  
     3  //+build go1.16,!go1.17
     4  
     5  package ring
     6  
     7  import (
     8  	q "container/ring"
     9  
    10  	"reflect"
    11  
    12  	"github.com/goplus/gossa"
    13  )
    14  
    15  func init() {
    16  	gossa.RegisterPackage(&gossa.Package{
    17  		Name:       "ring",
    18  		Path:       "container/ring",
    19  		Deps:       map[string]string{},
    20  		Interfaces: map[string]reflect.Type{},
    21  		NamedTypes: map[string]gossa.NamedType{
    22  			"Ring": {reflect.TypeOf((*q.Ring)(nil)).Elem(), "", "Do,Len,Link,Move,Next,Prev,Unlink,init"},
    23  		},
    24  		AliasTypes: map[string]reflect.Type{},
    25  		Vars:       map[string]reflect.Value{},
    26  		Funcs: map[string]reflect.Value{
    27  			"New": reflect.ValueOf(q.New),
    28  		},
    29  		TypedConsts:   map[string]gossa.TypedConst{},
    30  		UntypedConsts: map[string]gossa.UntypedConst{},
    31  	})
    32  }