mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-22 04:20:50 +01:00
Merge 81b6afad9b
into d00399e161
This commit is contained in:
commit
3d809ca6b1
1 changed files with 5 additions and 0 deletions
|
@ -1557,6 +1557,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