From 1c6a2ea2ea4b04416f7344ee5effe81816c7200b Mon Sep 17 00:00:00 2001
From: Uddeshya Singh
- TODO: https://golang.org/cl/264077: add Time.IsDST() to check if its Location is in Daylight Savings Time
+ The new Time.IsDST
method can be used to check whether the time
+ is in Daylight Savings Time in its configured location.
- TODO: https://golang.org/cl/293349: add Time.Unix{Milli,Micro} and to-Time helpers UnixMicro, UnixMilli
+ The new Time.UnixMilli
and
+ Time.UnixMicro
methods return the number of milliseconds and
+ microseconds elapsed since January 1, 1970 UTC respectively.
+ The new UnixMilli
and UnixMicro
functions return local Time corresponding to given
+ Unix time.
- TODO: https://golang.org/cl/300996: support "," as separator for fractional seconds + The package now accepts comma "," as a separator for fractional seconds when parsing and formatting time. + The following time formats are now accepted: +
-- 2.50.0