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
No steps in DifferenceISODateTime should be fallible now that user-defined calendars are gone.
Also: Step 10 can be made clearer when using TemporalUnitCategory.
TemporalUnitCategory
Instead of:
If largestUnit is not dateLargestUnit, then
Use:
If TemporalUnitCategory(largestUnit) is TIME, then
Furthermore: Step 7 can be simplified when swapping the inputs to CompareISODate:
CompareISODate
Current:
Let dateSign be CompareISODate(isoDateTime2.[[ISODate]], isoDateTime1.[[ISODate]]). ... If timeSign = -dateSign, then
Proposed:
Let dateSign be CompareISODate(isoDateTime1.[[ISODate]], isoDateTime2.[[ISODate]]). ... If timeSign = dateSign, then
The text was updated successfully, but these errors were encountered:
No branches or pull requests
No steps in DifferenceISODateTime should be fallible now that user-defined calendars are gone.
Also:
Step 10 can be made clearer when using
TemporalUnitCategory
.Instead of:
Use:
Furthermore:
Step 7 can be simplified when swapping the inputs to
CompareISODate
:Current:
Proposed:
The text was updated successfully, but these errors were encountered: