NewDDate is a helper routine to create a *DDate initialized from its argument.
(d pgdate.Date)
| 1736 | // NewDDate is a helper routine to create a *DDate initialized from its |
| 1737 | // argument. |
| 1738 | func NewDDate(d pgdate.Date) *DDate { |
| 1739 | return &DDate{Date: d} |
| 1740 | } |
| 1741 | |
| 1742 | // MakeDDate makes a DDate from a pgdate.Date. |
| 1743 | func MakeDDate(d pgdate.Date) DDate { |
no outgoing calls
no test coverage detected
searching dependent graphs…