Skip to content

fix recurrence nanosecond handling for nanosecond values > 0.5 #1320

New issue

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

lukaskollmer
Copy link
Contributor

This PR is a follow up to #1284: we missed the fact that remainder(dividingBy:) can produce negative values if the input's fractional part is greater than 0.5. (eg: 1.9.remainder(dividingBy: 1) is -0.1).

Since the dates produced by Calendar.DatesByRecurring.Iterator all have their nanosecond component set to 0 (rather than being rounded to the nearest whole number), we need to use truncatingRemainder(dividingBy:) instead.

I also changed it to operate on timeIntervalSinceReferenceDate instead of timeIntervalSince1970, since that saves us on having to perform the timeIntervalSince1970 computation every time.

@itingliu
Copy link
Contributor

@swift-ci please test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants