Files
yaegi/stdlib/go1_21_hash.go
T
Kai O'Reilly 77c1ce01c4 Remove unnecessary additional newlines in extract generated interface wrappers
A side effect of #1281 is that it added unnecessary additional newlines in generated interface wrappers from the `extract` tool. This PR removes those newlines from the extract tool template and updates the generated code with that change.
2024-07-17 16:58:04 +02:00

78 lines
2.7 KiB
Go

// Code generated by 'yaegi extract hash'. DO NOT EDIT.
//go:build go1.21 && !go1.22
// +build go1.21,!go1.22
package stdlib
import (
"hash"
"reflect"
)
func init() {
Symbols["hash/hash"] = map[string]reflect.Value{
// type definitions
"Hash": reflect.ValueOf((*hash.Hash)(nil)),
"Hash32": reflect.ValueOf((*hash.Hash32)(nil)),
"Hash64": reflect.ValueOf((*hash.Hash64)(nil)),
// interface wrapper definitions
"_Hash": reflect.ValueOf((*_hash_Hash)(nil)),
"_Hash32": reflect.ValueOf((*_hash_Hash32)(nil)),
"_Hash64": reflect.ValueOf((*_hash_Hash64)(nil)),
}
}
// _hash_Hash is an interface wrapper for Hash type
type _hash_Hash struct {
IValue interface{}
WBlockSize func() int
WReset func()
WSize func() int
WSum func(b []byte) []byte
WWrite func(p []byte) (n int, err error)
}
func (W _hash_Hash) BlockSize() int { return W.WBlockSize() }
func (W _hash_Hash) Reset() { W.WReset() }
func (W _hash_Hash) Size() int { return W.WSize() }
func (W _hash_Hash) Sum(b []byte) []byte { return W.WSum(b) }
func (W _hash_Hash) Write(p []byte) (n int, err error) { return W.WWrite(p) }
// _hash_Hash32 is an interface wrapper for Hash32 type
type _hash_Hash32 struct {
IValue interface{}
WBlockSize func() int
WReset func()
WSize func() int
WSum func(b []byte) []byte
WSum32 func() uint32
WWrite func(p []byte) (n int, err error)
}
func (W _hash_Hash32) BlockSize() int { return W.WBlockSize() }
func (W _hash_Hash32) Reset() { W.WReset() }
func (W _hash_Hash32) Size() int { return W.WSize() }
func (W _hash_Hash32) Sum(b []byte) []byte { return W.WSum(b) }
func (W _hash_Hash32) Sum32() uint32 { return W.WSum32() }
func (W _hash_Hash32) Write(p []byte) (n int, err error) { return W.WWrite(p) }
// _hash_Hash64 is an interface wrapper for Hash64 type
type _hash_Hash64 struct {
IValue interface{}
WBlockSize func() int
WReset func()
WSize func() int
WSum func(b []byte) []byte
WSum64 func() uint64
WWrite func(p []byte) (n int, err error)
}
func (W _hash_Hash64) BlockSize() int { return W.WBlockSize() }
func (W _hash_Hash64) Reset() { W.WReset() }
func (W _hash_Hash64) Size() int { return W.WSize() }
func (W _hash_Hash64) Sum(b []byte) []byte { return W.WSum(b) }
func (W _hash_Hash64) Sum64() uint64 { return W.WSum64() }
func (W _hash_Hash64) Write(p []byte) (n int, err error) { return W.WWrite(p) }