MakeDTime creates a DTime from a TimeOfDay.
(t timeofday.TimeOfDay)
| 1911 | |
| 1912 | // MakeDTime creates a DTime from a TimeOfDay. |
| 1913 | func MakeDTime(t timeofday.TimeOfDay) *DTime { |
| 1914 | d := DTime(t) |
| 1915 | return &d |
| 1916 | } |
| 1917 | |
| 1918 | // ParseDTime parses and returns the *DTime Datum value represented by the |
| 1919 | // provided string, or an error if parsing is unsuccessful. |
no test coverage detected
searching dependent graphs…