What is the best way to compare two time.Time objects to see if they are on the same calendar day?
I looked at using t.Truncate() but it can only truncate to hours. I know I can use t.GetDate() which is straightforward but still requires more lines of code than I think should be necessary.
24*time.HourtoTruncate?