* feat: support go1.11 and go 1.12. * chore: generate. * fix: build constraint. * exclude importer.For * generate go 1.11
31 lines
911 B
Go
31 lines
911 B
Go
// +build go1.12,!go1.13
|
|
|
|
package stdlib
|
|
|
|
// Code generated by 'goexports hash/crc32'. DO NOT EDIT.
|
|
|
|
import (
|
|
"hash/crc32"
|
|
"reflect"
|
|
)
|
|
|
|
func init() {
|
|
Value["hash/crc32"] = map[string]reflect.Value{
|
|
// function, constant and variable definitions
|
|
"Castagnoli": reflect.ValueOf(uint32(crc32.Castagnoli)),
|
|
"Checksum": reflect.ValueOf(crc32.Checksum),
|
|
"ChecksumIEEE": reflect.ValueOf(crc32.ChecksumIEEE),
|
|
"IEEE": reflect.ValueOf(uint32(crc32.IEEE)),
|
|
"IEEETable": reflect.ValueOf(&crc32.IEEETable).Elem(),
|
|
"Koopman": reflect.ValueOf(uint32(crc32.Koopman)),
|
|
"MakeTable": reflect.ValueOf(crc32.MakeTable),
|
|
"New": reflect.ValueOf(crc32.New),
|
|
"NewIEEE": reflect.ValueOf(crc32.NewIEEE),
|
|
"Size": reflect.ValueOf(crc32.Size),
|
|
"Update": reflect.ValueOf(crc32.Update),
|
|
|
|
// type definitions
|
|
"Table": reflect.ValueOf((*crc32.Table)(nil)),
|
|
}
|
|
}
|