mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 12:30:49 +01:00
Compare commits
2 commits
3d809ca6b1
...
3f2b8ba52e
Author | SHA1 | Date | |
---|---|---|---|
|
3f2b8ba52e | ||
|
81b6afad9b |
1 changed files with 5 additions and 0 deletions
|
@ -1537,6 +1537,11 @@ func (d Decimal) Value() (driver.Value, error) {
|
|||
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
|
||||
// deserialization.
|
||||
func (d *Decimal) UnmarshalText(text []byte) error {
|
||||
|
|
Loading…
Reference in a new issue