forked from TrueCloudLab/frostfs-api-go
732dd51b1b
I knew one day `sed` would save me an hour of manual work: ``` sed -i -n -e ' s/) Set/) Set/ p t setter b end :setter n s/nil/nil/ t hasif p b end :hasif n :loop p n s/}/}/ t end b loop :end ' $@ goimports -w $@ ``` Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
11 lines
236 B
Go
11 lines
236 B
Go
package accounting
|
|
|
|
// SetValue sets value of the decimal number.
|
|
func (m *Decimal) SetValue(v int64) {
|
|
m.Value = v
|
|
}
|
|
|
|
// SetPrecision sets precision of the decimal number.
|
|
func (m *Decimal) SetPrecision(v uint32) {
|
|
m.Precision = v
|
|
}
|