Compare commits

...

2 commits

Author SHA1 Message Date
Sofya Mikhaylova
e006f3f838
Merge 81b6afad9b into 80ec940054 2024-04-09 00:11:06 +00:00
sophistik
81b6afad9b method Ptr() 2021-10-25 23:53:06 +03:00

View file

@ -1863,6 +1863,11 @@ func (d Decimal) Value() (driver.Value, error) {
return d.String(), nil return d.String(), nil
} }
// Decimal returns a pointer to struct
func (d Decimal) Ptr() *Decimal {
return &d
}
// UnmarshalText implements the encoding.TextUnmarshaler interface for XML // UnmarshalText implements the encoding.TextUnmarshaler interface for XML
// deserialization. // deserialization.
func (d *Decimal) UnmarshalText(text []byte) error { func (d *Decimal) UnmarshalText(text []byte) error {