ToTime casts any value to a(n) time.Time type.
(i any)
| 18 | |
| 19 | // ToTime casts any value to a(n) time.Time type. |
| 20 | func ToTime(i any) time.Time { |
| 21 | v, _ := ToTimeE(i) |
| 22 | return v |
| 23 | } |
| 24 | |
| 25 | // ToTimeInDefaultLocation casts any value to a(n) time.Time type. |
| 26 | func ToTimeInDefaultLocation(i any, location *time.Location) time.Time { |
nothing calls this directly
no test coverage detected
searching dependent graphs…