NewDInt is a helper routine to create a *DInt initialized from its argument.
(d DInt)
| 663 | |
| 664 | // NewDInt is a helper routine to create a *DInt initialized from its argument. |
| 665 | func NewDInt(d DInt) *DInt { |
| 666 | return &d |
| 667 | } |
| 668 | |
| 669 | // ParseDInt parses and returns the *DInt Datum value represented by the provided |
| 670 | // string, or an error if parsing is unsuccessful. |