(i int64)
| 59 | func NewInt16(i int16) Value { return newNativeValue(TypeInt16, uint64(i)) } |
| 60 | func NewInt32(i int32) Value { return newNativeValue(TypeInt32, uint64(i)) } |
| 61 | func NewInt64(i int64) Value { return newNativeValue(TypeInt64, uint64(i)) } |
| 62 | func NewDuration(d nano.Duration) Value { return newNativeValue(TypeDuration, uint64(d)) } |
| 63 | func NewTime(ts nano.Ts) Value { return newNativeValue(TypeTime, uint64(ts)) } |
| 64 | func NewFloat(t Type, f float64) Value { return newNativeValue(t, math.Float64bits(f)) } |