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
#3546 addressed some of the problems with time_alloc but processing is still slow with inputs that have a large microsecond value, e.g.:
time_alloc
Time.at(0, 1e15)
Time.at(0, -1e15)
CRuby handles these cases efficiently with division: https://github.com/ruby/ruby/blob/8234c571a7758e19699542c68f194c0451059466/time.c#L2134-L2149
The text was updated successfully, but these errors were encountered:
8d9d7c9
No branches or pull requests
#3546 addressed some of the problems with
time_alloc
but processing is still slow with inputs that have a large microsecond value, e.g.:CRuby handles these cases efficiently with division: https://github.com/ruby/ruby/blob/8234c571a7758e19699542c68f194c0451059466/time.c#L2134-L2149
The text was updated successfully, but these errors were encountered: