blob: 739809b0f5724749729a71982b21d9d0ebb2344a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package proto
func Decimal128FromInt(v int) Decimal128 {
return Decimal128(Int128FromInt(v))
}
func Decimal256FromInt(v int) Decimal256 {
return Decimal256(Int256FromInt(v))
}
|