We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide min and max timestamp (just like math.MaxInt, math.MinInt)
math.MaxInt
math.MinInt
Sometimes I have to decide whether a timestamp in a valid range (after the begin time stamp and before the end time stamp).
It's convenient if I have a MaxTime so that any certainTime.Before(maxTime) is true
certainTime.Before(maxTime)
true
The text was updated successfully, but these errors were encountered:
jinzhu
No branches or pull requests
Describe the feature
Provide min and max timestamp (just like
math.MaxInt
,math.MinInt
)Motivation
Sometimes I have to decide whether a timestamp in a valid range (after the begin time stamp and before the end time stamp).
It's convenient if I have a MaxTime so that any
certainTime.Before(maxTime)
istrue
Related Issues
The text was updated successfully, but these errors were encountered: