(t Type, i int64)
| 55 | func NewUint32(u uint32) Value { return newNativeValue(TypeUint32, uint64(u)) } |
| 56 | func NewUint64(u uint64) Value { return newNativeValue(TypeUint64, u) } |
| 57 | func NewInt(t Type, i int64) Value { return newNativeValue(t, uint64(i)) } |
| 58 | func NewInt8(i int8) Value { return newNativeValue(TypeInt8, uint64(i)) } |
| 59 | func NewInt16(i int16) Value { return newNativeValue(TypeInt16, uint64(i)) } |
| 60 | func NewInt32(i int32) Value { return newNativeValue(TypeInt32, uint64(i)) } |
no test coverage detected