jiff/civil/weekday.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
use crate::{
error::Error,
util::{
rangeint::{RFrom, RInto},
t::{self, C},
},
};
/// A representation for the day of the week.
///
/// The default representation follows ISO 8601. That is, the week starts with
/// Monday and numbering starts at `1`. However, the various constructors and
/// accessors support using other schemes in wide use:
///
/// * [`Weekday::from_monday_zero_offset`] builds a weekday from
/// a scheme that starts the week on Monday at offset `0`, while
/// [`Weekday::to_monday_zero_offset`] converts to it.
/// * [`Weekday::from_monday_one_offset`] builds a weekday from a scheme
/// that starts the week on Monday at offset `1` (the default representation),
/// while [`Weekday::to_monday_one_offset`] converts to it.
/// * [`Weekday::from_sunday_zero_offset`] builds a weekday from
/// a scheme that starts the week on Sunday at offset `0`, while
/// [`Weekday::to_sunday_zero_offset`] converts to it.
/// * [`Weekday::from_sunday_one_offset`] builds a weekday from
/// a scheme that starts the week on Sunday at offset `1`, while
/// [`Weekday::to_sunday_one_offset`] converts to it.
///
/// # Arithmetic
///
/// This type provides [`Weekday::wrapping_add`] and [`Weekday::wrapping_sub`]
/// for performing wrapping arithmetic on weekdays. These are also available
/// via operator overloading:
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Monday + 1, Weekday::Tuesday);
/// assert_eq!(Weekday::Sunday - 1, Weekday::Saturday);
/// ```
///
/// # Comparisons
///
/// This type provides `Eq` and `PartialEq` trait implementations for easy
/// comparison:
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Wednesday, Weekday::Wednesday + 7);
/// assert_ne!(Weekday::Thursday, Weekday::Friday);
/// ```
///
/// But this type specifically does not provide `Ord` or `PartialOrd` trait
/// implementations. Such an implementation would require deciding whether
/// Sunday is less than Monday or greater than Monday. The former case
/// corresponds to a week scheme where Sunday is the first day in the week,
/// where as the latter corresponds to a scheme where Monday is the first day.
/// Since both schemes are in widespread use, it would be inappropriate to bake
/// in an assumption of one or the other. Instead, one can convert a weekday
/// into the desired offset scheme, and then compare the offsets:
///
/// ```
/// use jiff::civil::Weekday;
///
/// let (sun, mon) = (Weekday::Sunday, Weekday::Monday);
/// assert!(sun.to_sunday_zero_offset() < mon.to_sunday_zero_offset());
/// assert!(sun.to_monday_zero_offset() > mon.to_monday_zero_offset());
/// ```
///
/// # Example
///
/// This example shows the result of converting to and from different schemes:
///
/// ```
/// use jiff::civil::Weekday;
///
/// // The different representations of Monday.
/// assert_eq!(Weekday::Monday.to_monday_zero_offset(), 0);
/// assert_eq!(Weekday::Monday.to_monday_one_offset(), 1);
/// assert_eq!(Weekday::Monday.to_sunday_zero_offset(), 1);
/// assert_eq!(Weekday::Monday.to_sunday_one_offset(), 2);
///
/// // The different representations of Sunday.
/// assert_eq!(Weekday::Sunday.to_monday_zero_offset(), 6);
/// assert_eq!(Weekday::Sunday.to_monday_one_offset(), 7);
/// assert_eq!(Weekday::Sunday.to_sunday_zero_offset(), 0);
/// assert_eq!(Weekday::Sunday.to_sunday_one_offset(), 1);
/// ```
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
#[repr(u8)]
#[allow(missing_docs)]
pub enum Weekday {
Monday = 1,
Tuesday = 2,
Wednesday = 3,
Thursday = 4,
Friday = 5,
Saturday = 6,
Sunday = 7,
}
impl Weekday {
/// Convert an offset to a structured `Weekday`.
///
/// The offset should be from a scheme where the first day of the week
/// is Monday and starts numbering at `0`.
///
/// # Errors
///
/// This returns an error when the given offset is not in the range
/// `0..=6`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// let weekday = Weekday::from_monday_zero_offset(3)?;
/// assert_eq!(weekday, Weekday::Thursday);
///
/// assert!(Weekday::from_monday_zero_offset(7).is_err());
/// assert!(Weekday::from_monday_zero_offset(-1).is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn from_monday_zero_offset(offset: i8) -> Result<Weekday, Error> {
let offset = t::WeekdayZero::try_new("weekday", offset)?;
Ok(Weekday::from_monday_zero_offset_ranged(offset))
}
/// Convert an offset to a structured `Weekday`.
///
/// The offset should be from a scheme where the first day of the week
/// is Monday and starts numbering at `1`.
///
/// # Errors
///
/// This returns an error when the given offset is not in the range
/// `1..=7`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// let weekday = Weekday::from_monday_one_offset(4)?;
/// assert_eq!(weekday, Weekday::Thursday);
///
/// assert!(Weekday::from_monday_one_offset(8).is_err());
/// assert!(Weekday::from_monday_one_offset(0).is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn from_monday_one_offset(offset: i8) -> Result<Weekday, Error> {
let offset = t::WeekdayOne::try_new("weekday", offset)?;
Ok(Weekday::from_monday_one_offset_ranged(offset))
}
/// Convert an offset to a structured `Weekday`.
///
/// The offset should be from a scheme where the first day of the week
/// is Sunday and starts numbering at `0`.
///
/// # Errors
///
/// This returns an error when the given offset is not in the range
/// `0..=6`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// let weekday = Weekday::from_sunday_zero_offset(4)?;
/// assert_eq!(weekday, Weekday::Thursday);
///
/// assert!(Weekday::from_sunday_zero_offset(7).is_err());
/// assert!(Weekday::from_sunday_zero_offset(-1).is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn from_sunday_zero_offset(offset: i8) -> Result<Weekday, Error> {
let offset = t::WeekdayZero::try_new("weekday", offset)?;
Ok(Weekday::from_sunday_zero_offset_ranged(offset))
}
/// Convert an offset to a structured `Weekday`.
///
/// The offset should be from a scheme where the first day of the week
/// is Sunday and starts numbering at `1`.
///
/// # Errors
///
/// This returns an error when the given offset is not in the range
/// `1..=7`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// let weekday = Weekday::from_sunday_one_offset(5)?;
/// assert_eq!(weekday, Weekday::Thursday);
///
/// assert!(Weekday::from_sunday_one_offset(8).is_err());
/// assert!(Weekday::from_sunday_one_offset(0).is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn from_sunday_one_offset(offset: i8) -> Result<Weekday, Error> {
let offset = t::WeekdayOne::try_new("weekday", offset)?;
Ok(Weekday::from_sunday_one_offset_ranged(offset))
}
/// Returns this weekday as an offset.
///
/// The offset returned is computed based on a week that starts with Monday
/// and begins numbering at `0`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Thursday.to_monday_zero_offset(), 3);
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn to_monday_zero_offset(self) -> i8 {
self.to_monday_zero_offset_ranged().get()
}
/// Returns this weekday as an offset.
///
/// The offset returned is computed based on a week that starts with Monday
/// and begins numbering at `1`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Thursday.to_monday_one_offset(), 4);
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn to_monday_one_offset(self) -> i8 {
self.to_monday_one_offset_ranged().get()
}
/// Returns this weekday as an offset.
///
/// The offset returned is computed based on a week that starts with Sunday
/// and begins numbering at `0`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Thursday.to_sunday_zero_offset(), 4);
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn to_sunday_zero_offset(self) -> i8 {
self.to_sunday_zero_offset_ranged().get()
}
/// Returns this weekday as an offset.
///
/// The offset returned is computed based on a week that starts with Sunday
/// and begins numbering at `1`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Thursday.to_sunday_one_offset(), 5);
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn to_sunday_one_offset(self) -> i8 {
self.to_sunday_one_offset_ranged().get()
}
/// Returns the next weekday, wrapping around at the end of week to the
/// beginning of the week.
///
/// This is a convenience routing for calling [`Weekday::wrapping_add`]
/// with a value of `1`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Wednesday.next(), Weekday::Thursday);
/// assert_eq!(Weekday::Sunday.next(), Weekday::Monday);
/// assert_eq!(Weekday::Saturday.next(), Weekday::Sunday);
/// ```
#[inline]
pub fn next(self) -> Weekday {
self.wrapping_add(1)
}
/// Returns the previous weekday, wrapping around at the beginning of week
/// to the end of the week.
///
/// This is a convenience routing for calling [`Weekday::wrapping_sub`]
/// with a value of `1`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Wednesday.previous(), Weekday::Tuesday);
/// assert_eq!(Weekday::Sunday.previous(), Weekday::Saturday);
/// assert_eq!(Weekday::Saturday.previous(), Weekday::Friday);
/// ```
#[inline]
pub fn previous(self) -> Weekday {
self.wrapping_sub(1)
}
/// Returns the number of days from `other` to this weekday.
///
/// Adding the returned number of days to `other` is guaranteed to sum to
/// this weekday. The number of days returned is guaranteed to be in the
/// range `0..=6`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Friday.since(Weekday::Tuesday), 3);
/// assert_eq!(Weekday::Tuesday.since(Weekday::Tuesday), 0);
/// assert_eq!(Weekday::Monday.since(Weekday::Sunday), 1);
/// assert_eq!(Weekday::Sunday.since(Weekday::Monday), 6);
/// ```
#[inline]
pub fn since(self, other: Weekday) -> i8 {
self.since_ranged(other).get()
}
/// Returns the number of days until `other` from this weekday.
///
/// Adding the returned number of days to this weekday is guaranteed to sum
/// to `other` weekday. The number of days returned is guaranteed to be in
/// the range `0..=6`.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Friday.until(Weekday::Tuesday), 4);
/// assert_eq!(Weekday::Tuesday.until(Weekday::Tuesday), 0);
/// assert_eq!(Weekday::Monday.until(Weekday::Sunday), 6);
/// assert_eq!(Weekday::Sunday.until(Weekday::Monday), 1);
/// ```
#[inline]
pub fn until(self, other: Weekday) -> i8 {
self.until_ranged(other).get()
}
/// Add the given number of days to this weekday, using wrapping arithmetic,
/// and return the resulting weekday.
///
/// Adding a multiple of `7` (including `0`) is guaranteed to produce the
/// same weekday as this one.
///
/// Note that this routine is also available via the `+` operator.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Sunday.wrapping_add(1), Weekday::Monday);
/// assert_eq!(Weekday::Sunday.wrapping_add(2), Weekday::Tuesday);
/// assert_eq!(Weekday::Saturday.wrapping_add(1), Weekday::Sunday);
/// assert_eq!(Weekday::Saturday.wrapping_add(7), Weekday::Saturday);
/// assert_eq!(Weekday::Sunday.wrapping_add(-1), Weekday::Saturday);
/// ```
///
/// Wrapping arithmetic is also performed by the `+` operator:
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Sunday + 1, Weekday::Monday);
/// assert_eq!(Weekday::Sunday + 2, Weekday::Tuesday);
/// assert_eq!(Weekday::Saturday + 1, Weekday::Sunday);
/// assert_eq!(Weekday::Saturday + 7, Weekday::Saturday);
/// assert_eq!(Weekday::Sunday + -1, Weekday::Saturday);
/// // The weekday can also be on the right hand side of addition:
/// assert_eq!(1 + Weekday::Sunday, Weekday::Monday);
/// ```
#[inline]
pub fn wrapping_add<D: Into<i64>>(self, days: D) -> Weekday {
let start = t::NoUnits::rfrom(self.to_monday_zero_offset_ranged());
// OK because all i64 values fit in a NoUnits.
let rhs = t::NoUnits::new(days.into()).unwrap();
let end = start.wrapping_add(rhs) % C(7);
Weekday::from_monday_zero_offset_ranged(end)
}
/// Subtract the given number of days from this weekday, using wrapping
/// arithmetic, and return the resulting weekday.
///
/// Subtracting a multiple of `7` (including `0`) is guaranteed to produce
/// the same weekday as this one.
///
/// Note that this routine is also available via the `-` operator.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Sunday.wrapping_sub(1), Weekday::Saturday);
/// assert_eq!(Weekday::Sunday.wrapping_sub(2), Weekday::Friday);
/// assert_eq!(Weekday::Saturday.wrapping_sub(1), Weekday::Friday);
/// assert_eq!(Weekday::Saturday.wrapping_sub(7), Weekday::Saturday);
/// assert_eq!(Weekday::Sunday.wrapping_sub(-1), Weekday::Monday);
/// ```
///
/// Wrapping arithmetic is also performed by the `-` operator:
///
/// ```
/// use jiff::civil::Weekday;
///
/// assert_eq!(Weekday::Sunday - 1, Weekday::Saturday);
/// assert_eq!(Weekday::Sunday - 2, Weekday::Friday);
/// assert_eq!(Weekday::Saturday - 1, Weekday::Friday);
/// assert_eq!(Weekday::Saturday - 7, Weekday::Saturday);
/// assert_eq!(Weekday::Sunday - -1, Weekday::Monday);
/// ```
///
/// Unlike addition, since subtraction is not commutative and negating a
/// weekday has no semantic meaning, the weekday cannot be on the right
/// hand side of the `-` operator.
#[inline]
pub fn wrapping_sub<D: Into<i64>>(self, days: D) -> Weekday {
self.wrapping_add(-days.into())
}
/// Starting with this weekday, this returns an unending iterator that
/// cycles forward through the days of the week.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// let mut it = Weekday::Tuesday.cycle_forward();
/// assert_eq!(it.next(), Some(Weekday::Tuesday));
/// assert_eq!(it.next(), Some(Weekday::Wednesday));
/// assert_eq!(it.next(), Some(Weekday::Thursday));
/// assert_eq!(it.next(), Some(Weekday::Friday));
/// assert_eq!(it.next(), Some(Weekday::Saturday));
/// assert_eq!(it.next(), Some(Weekday::Sunday));
/// assert_eq!(it.next(), Some(Weekday::Monday));
/// assert_eq!(it.next(), Some(Weekday::Tuesday));
/// ```
#[inline]
pub fn cycle_forward(self) -> WeekdaysForward {
let nexts = [
self,
self.wrapping_add(1),
self.wrapping_add(2),
self.wrapping_add(3),
self.wrapping_add(4),
self.wrapping_add(5),
self.wrapping_add(6),
];
WeekdaysForward { it: nexts.into_iter().cycle() }
}
/// Starting with this weekday, this returns an unending iterator that
/// cycles backward through the days of the week.
///
/// # Example
///
/// ```
/// use jiff::civil::Weekday;
///
/// let mut it = Weekday::Tuesday.cycle_reverse();
/// assert_eq!(it.next(), Some(Weekday::Tuesday));
/// assert_eq!(it.next(), Some(Weekday::Monday));
/// assert_eq!(it.next(), Some(Weekday::Sunday));
/// assert_eq!(it.next(), Some(Weekday::Saturday));
/// assert_eq!(it.next(), Some(Weekday::Friday));
/// assert_eq!(it.next(), Some(Weekday::Thursday));
/// assert_eq!(it.next(), Some(Weekday::Wednesday));
/// assert_eq!(it.next(), Some(Weekday::Tuesday));
/// ```
#[inline]
pub fn cycle_reverse(self) -> WeekdaysReverse {
let nexts = [
self,
self.wrapping_sub(1),
self.wrapping_sub(2),
self.wrapping_sub(3),
self.wrapping_sub(4),
self.wrapping_sub(5),
self.wrapping_sub(6),
];
WeekdaysReverse { it: nexts.into_iter().cycle() }
}
}
impl Weekday {
#[inline]
pub(crate) fn from_monday_zero_offset_ranged(
offset: impl RInto<t::WeekdayZero>,
) -> Weekday {
match offset.rinto().get() {
0 => Weekday::Monday,
1 => Weekday::Tuesday,
2 => Weekday::Wednesday,
3 => Weekday::Thursday,
4 => Weekday::Friday,
5 => Weekday::Saturday,
6 => Weekday::Sunday,
_ => unreachable!(),
}
}
#[inline]
pub(crate) fn from_monday_one_offset_ranged(
offset: impl RInto<t::WeekdayOne>,
) -> Weekday {
let offset_zero = offset.rinto() - C(1);
Weekday::from_monday_zero_offset_ranged(offset_zero)
}
#[inline]
pub(crate) fn from_sunday_zero_offset_ranged(
offset: impl RInto<t::WeekdayZero>,
) -> Weekday {
let offset_sunday = (offset.rinto() - C(1)) % C(7);
Weekday::from_monday_zero_offset_ranged(offset_sunday)
}
#[inline]
pub(crate) fn from_sunday_one_offset_ranged(
offset: impl RInto<t::WeekdayOne>,
) -> Weekday {
let offset_zero = offset.rinto() - C(1);
Weekday::from_sunday_zero_offset_ranged(offset_zero)
}
#[inline]
pub(crate) fn to_monday_zero_offset_ranged(self) -> t::WeekdayZero {
(self.to_monday_one_offset_ranged() - C(1)).rinto()
}
#[inline]
pub(crate) fn to_monday_one_offset_ranged(self) -> t::WeekdayOne {
t::WeekdayOne::new_unchecked(self as i8)
}
#[inline]
pub(crate) fn to_sunday_zero_offset_ranged(self) -> t::WeekdayZero {
(self.to_monday_zero_offset_ranged() + C(1)) % C(7)
}
#[inline]
pub(crate) fn to_sunday_one_offset_ranged(self) -> t::WeekdayOne {
(self.to_sunday_zero_offset_ranged() + C(1)).rinto()
}
#[inline]
pub(crate) fn since_ranged(self, other: Weekday) -> t::WeekdayZero {
(self.to_monday_zero_offset_ranged()
- other.to_monday_zero_offset_ranged())
% C(7)
}
#[inline]
pub(crate) fn until_ranged(self, other: Weekday) -> t::WeekdayZero {
other.since_ranged(self)
}
}
impl core::ops::Add<i8> for Weekday {
type Output = Weekday;
#[inline]
fn add(self, rhs: i8) -> Weekday {
self.wrapping_add(rhs)
}
}
impl core::ops::Add<i16> for Weekday {
type Output = Weekday;
#[inline]
fn add(self, rhs: i16) -> Weekday {
self.wrapping_add(rhs)
}
}
impl core::ops::Add<i32> for Weekday {
type Output = Weekday;
#[inline]
fn add(self, rhs: i32) -> Weekday {
self.wrapping_add(rhs)
}
}
impl core::ops::Add<i64> for Weekday {
type Output = Weekday;
#[inline]
fn add(self, rhs: i64) -> Weekday {
self.wrapping_add(rhs)
}
}
// Since addition is commutative, we don't might if users write `n + weekday`
// or `weekday + n`.
impl core::ops::Add<Weekday> for i8 {
type Output = Weekday;
#[inline]
fn add(self, rhs: Weekday) -> Weekday {
rhs.wrapping_add(self)
}
}
impl core::ops::Add<Weekday> for i16 {
type Output = Weekday;
#[inline]
fn add(self, rhs: Weekday) -> Weekday {
rhs.wrapping_add(self)
}
}
impl core::ops::Add<Weekday> for i32 {
type Output = Weekday;
#[inline]
fn add(self, rhs: Weekday) -> Weekday {
rhs.wrapping_add(self)
}
}
impl core::ops::Add<Weekday> for i64 {
type Output = Weekday;
#[inline]
fn add(self, rhs: Weekday) -> Weekday {
rhs.wrapping_add(self)
}
}
impl core::ops::AddAssign<i8> for Weekday {
#[inline]
fn add_assign(&mut self, rhs: i8) {
*self = *self + rhs;
}
}
impl core::ops::AddAssign<i16> for Weekday {
#[inline]
fn add_assign(&mut self, rhs: i16) {
*self = *self + rhs;
}
}
impl core::ops::AddAssign<i32> for Weekday {
#[inline]
fn add_assign(&mut self, rhs: i32) {
*self = *self + rhs;
}
}
impl core::ops::AddAssign<i64> for Weekday {
#[inline]
fn add_assign(&mut self, rhs: i64) {
*self = *self + rhs;
}
}
// Subtraction isn't commutative, so we only define it when the right hand
// side is an integer. Otherwise we'd need a concept of what it means to
// "negate" a weekday, which doesn't really make sense?
impl core::ops::Sub<i8> for Weekday {
type Output = Weekday;
#[inline]
fn sub(self, rhs: i8) -> Weekday {
self.wrapping_sub(rhs)
}
}
impl core::ops::Sub<i16> for Weekday {
type Output = Weekday;
#[inline]
fn sub(self, rhs: i16) -> Weekday {
self.wrapping_sub(rhs)
}
}
impl core::ops::Sub<i32> for Weekday {
type Output = Weekday;
#[inline]
fn sub(self, rhs: i32) -> Weekday {
self.wrapping_sub(rhs)
}
}
impl core::ops::Sub<i64> for Weekday {
type Output = Weekday;
#[inline]
fn sub(self, rhs: i64) -> Weekday {
self.wrapping_sub(rhs)
}
}
impl core::ops::SubAssign<i8> for Weekday {
#[inline]
fn sub_assign(&mut self, rhs: i8) {
*self = *self - rhs;
}
}
impl core::ops::SubAssign<i16> for Weekday {
#[inline]
fn sub_assign(&mut self, rhs: i16) {
*self = *self - rhs;
}
}
impl core::ops::SubAssign<i32> for Weekday {
#[inline]
fn sub_assign(&mut self, rhs: i32) {
*self = *self - rhs;
}
}
impl core::ops::SubAssign<i64> for Weekday {
#[inline]
fn sub_assign(&mut self, rhs: i64) {
*self = *self - rhs;
}
}
#[cfg(test)]
impl quickcheck::Arbitrary for Weekday {
fn arbitrary(g: &mut quickcheck::Gen) -> Weekday {
let offset = t::WeekdayZero::arbitrary(g);
Weekday::from_monday_zero_offset_ranged(offset)
}
fn shrink(&self) -> alloc::boxed::Box<dyn Iterator<Item = Weekday>> {
alloc::boxed::Box::new(
self.to_monday_zero_offset_ranged()
.shrink()
.map(Weekday::from_monday_zero_offset_ranged),
)
}
}
/// An unending iterator of the days of the week.
///
/// This iterator is created by calling [`Weekday::cycle_forward`].
#[derive(Clone, Debug)]
pub struct WeekdaysForward {
it: core::iter::Cycle<core::array::IntoIter<Weekday, 7>>,
}
impl Iterator for WeekdaysForward {
type Item = Weekday;
#[inline]
fn next(&mut self) -> Option<Weekday> {
self.it.next()
}
}
impl core::iter::FusedIterator for WeekdaysForward {}
/// An unending iterator of the days of the week in reverse.
///
/// This iterator is created by calling [`Weekday::cycle_reverse`].
#[derive(Clone, Debug)]
pub struct WeekdaysReverse {
it: core::iter::Cycle<core::array::IntoIter<Weekday, 7>>,
}
impl Iterator for WeekdaysReverse {
type Item = Weekday;
#[inline]
fn next(&mut self) -> Option<Weekday> {
self.it.next()
}
}
impl core::iter::FusedIterator for WeekdaysReverse {}
#[cfg(test)]
mod tests {
use super::*;
quickcheck::quickcheck! {
fn prop_since_add_equals_self(wd1: Weekday, wd2: Weekday) -> bool {
let days = wd1.since(wd2);
wd2.wrapping_add(days) == wd1
}
fn prop_until_add_equals_other(wd1: Weekday, wd2: Weekday) -> bool {
let days = wd1.until(wd2);
wd1.wrapping_add(days) == wd2
}
}
}