Files
moxa/stdlib/index_suffixarray.go
Marc Vertes 25adc35a3c Change representation of stdlib from interface{} to reflect.Value
This fixes problems due to storing binary symbols as interfaces{}
instead of concrete type, which confuses lookup functions to retrieve
methods etc. in reflect.
2018-08-28 03:12:28 +02:00

18 lines
357 B
Go

package stdlib
// Generated by 'goexports index/suffixarray'. Do not edit!
import (
"index/suffixarray"
"reflect"
)
func init() {
Value["index/suffixarray"] = map[string]reflect.Value{
"New": reflect.ValueOf(suffixarray.New),
}
Type["index/suffixarray"] = map[string]reflect.Type{
"Index": reflect.TypeOf((*suffixarray.Index)(nil)).Elem(),
}
}