mirror of
https://github.com/shopspring/decimal.git
synced 2024-11-23 04:40:49 +01:00
Merge 81b6afad9b
into a1bdfc355e
This commit is contained in:
commit
03084ff1ec
1 changed files with 5 additions and 0 deletions
|
@ -1868,6 +1868,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