-
Notifications
You must be signed in to change notification settings - Fork 18.8k
Description
I would like to implement a function time.UnixMills() to return t in int64 of milliseconds, like in the time.UnixNano() returns t in int64 of nanoseconds.
Today If I want to get the value of the time in milliseconds we need to do a lot of calculations, but I know other languages have this function and researching about that I've implemented that function in the time package.
It's a simple function with two const needed to easier understood.
Here is the simplest way that I've found to implement: https://go-review.googlesource.com/c/go/+/290772/1/src/time/time.go
This implementation is based on Rust as_millis(): https://doc.rust-lang.org/src/core/time.rs.html#393
EDITED:
First, thanks all for the contributions with all discuss, I had some problems and I couldn't contribute much during the discussions and initially not being able to expose all my points. Now all points have been discussed and we apparently have a consensus.
Just to format the proposal correctly with what was agreed.
Based on the discussions we will have both directions of the converters, generators and consumers and we probably will have something like that:
func (t Time) UnixMilli() int64 {}
func (t Time) UnixMicro() int64 {}
func UnixMilli(msec int64) Time {}
func UnixMicro(usec int64) Time {}