Files
moxa/stdlib/go1_15_hash_fnv.go
Ludovic Fernandez 1fe75f149d feat: update stdlib mapping for go1.15
- drop stdlib for go1.13
- generate stdlib for go1.15
-  update CI configuration.
2020-08-12 12:38:04 +02:00

23 lines
528 B
Go

// Code generated by 'github.com/containous/yaegi/extract hash/fnv'. DO NOT EDIT.
// +build go1.15,!go1.16
package stdlib
import (
"hash/fnv"
"reflect"
)
func init() {
Symbols["hash/fnv"] = map[string]reflect.Value{
// function, constant and variable definitions
"New128": reflect.ValueOf(fnv.New128),
"New128a": reflect.ValueOf(fnv.New128a),
"New32": reflect.ValueOf(fnv.New32),
"New32a": reflect.ValueOf(fnv.New32a),
"New64": reflect.ValueOf(fnv.New64),
"New64a": reflect.ValueOf(fnv.New64a),
}
}