NewDInt is a helper routine to create a *DInt initialized from its argument.
(d DInt)
| 607 | |
| 608 | // NewDInt is a helper routine to create a *DInt initialized from its argument. |
| 609 | func NewDInt(d DInt) *DInt { |
| 610 | return &d |
| 611 | } |
| 612 | |
| 613 | // ParseDInt parses and returns the *DInt Datum value represented by the provided |
| 614 | // string, or an error if parsing is unsuccessful. |
no outgoing calls
no test coverage detected
searching dependent graphs…