MakeDTime creates a DTime from a TimeOfDay.
(t timeofday.TimeOfDay)
| 851 | |
| 852 | // MakeDTime creates a DTime from a TimeOfDay. |
| 853 | func MakeDTime(t timeofday.TimeOfDay) *DTime { |
| 854 | d := DTime(t) |
| 855 | return &d |
| 856 | } |
| 857 | |
| 858 | // ParseDTime parses and returns the *DTime Datum value represented by the |
| 859 | // provided string, or an error if parsing is unsuccessful. |
no test coverage detected