pub struct CompactCalendar { /* private fields */ }
Expand description

A compact representation of included days in a range of years, using u32-based bit arrays.

Implementations§

source§

impl CompactCalendar

source

pub fn new(first_year: i32, last_year: i32) -> Self

Create a new year that does not include any day but has the capacity to add any new day in the range of [first_year, last_year].

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2022, 3, 5).unwrap();
let day3 = NaiveDate::from_ymd_opt(2055, 7, 5).unwrap();

let mut cal = CompactCalendar::new(2020, 2050);
assert!(!cal.insert(day1));
assert!(cal.insert(day2));
assert!(!cal.insert(day3));
assert_eq!(cal.count(), 1);
source

pub const fn empty() -> Self

Create a new calendar year that does not include any day and does not have the capacity to add any.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let mut cal = CompactCalendar::empty();
assert!(!cal.insert(NaiveDate::from_ymd_opt(2013, 11, 3).unwrap()));
assert_eq!(cal.count(), 0);
source

pub fn year_for(&self, date: NaiveDate) -> Option<&CompactYear>

Get a reference to the year containing give date.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2055, 3, 5).unwrap();

let mut cal = CompactCalendar::new(2000, 2050);
cal.insert(day1);

assert!(cal.year_for(day1).unwrap().contains(11, 3));
assert!(cal.year_for(day2).is_none());
source

pub fn year_for_mut(&mut self, date: NaiveDate) -> Option<&mut CompactYear>

Get a mutable reference to the year containing give date.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2022, 3, 5).unwrap();
let day3 = NaiveDate::from_ymd_opt(2055, 7, 5).unwrap();

let mut cal = CompactCalendar::new(2000, 2050);
assert!(cal.year_for_mut(day3).is_none());

cal.insert(day1);
assert!(cal.year_for_mut(day1).unwrap().contains(11, 3));

cal.year_for_mut(day2).unwrap().insert(3, 5);
assert!(cal.contains(day2));
source

pub fn insert(&mut self, date: NaiveDate) -> bool

Include a day in this calendar. Return false if the given day was not inserted because it does not belong to the year range of this calendar.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2022, 3, 5).unwrap();
let day3 = NaiveDate::from_ymd_opt(2055, 9, 7).unwrap();

let mut cal = CompactCalendar::new(2000, 2050);
assert!(cal.insert(day1));
assert!(cal.insert(day1));
assert!(cal.insert(day2));
assert_eq!(cal.count(), 2);

assert!(!cal.insert(day3));
assert_eq!(cal.count(), 2);
source

pub fn contains(&self, date: NaiveDate) -> bool

Check if this calendar includes the given day.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2022, 3, 5).unwrap();
let day3 = NaiveDate::from_ymd_opt(2022, 8, 12).unwrap();

let mut cal = CompactCalendar::new(2000, 2050);
cal.insert(day1);
cal.insert(day2);

assert!(cal.contains(day1));
assert!(cal.contains(day2));
assert!(!cal.contains(day3));
source

pub fn iter(&self) -> impl Iterator<Item = NaiveDate> + '_

Iterate over the days included in this calendar.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2022, 3, 5).unwrap();
let day3 = NaiveDate::from_ymd_opt(2022, 8, 12).unwrap();

let mut cal = CompactCalendar::new(2000, 2050);
cal.insert(day3);
cal.insert(day1);
cal.insert(day2);

let days: Vec<_> = cal.iter().collect();
assert_eq!(days, [day1, day2, day3])
source

pub fn first_after(&self, date: NaiveDate) -> Option<NaiveDate>

Get the first day included in this calendar that follows the input day, if such a day exists.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let day0 = NaiveDate::from_ymd_opt(2010, 1, 1).unwrap();
let day1 = NaiveDate::from_ymd_opt(2013, 11, 3).unwrap();
let day2 = NaiveDate::from_ymd_opt(2022, 3, 5).unwrap();
let day3 = NaiveDate::from_ymd_opt(2022, 8, 12).unwrap();

let mut cal = CompactCalendar::new(2000, 2050);
cal.insert(day1);
cal.insert(day2);
cal.insert(day3);

assert_eq!(cal.first_after(day0), Some(day1));
assert_eq!(cal.first_after(day2), Some(day3));
assert_eq!(cal.first_after(day3), None);
source

pub fn count(&self) -> u32

Count number of days included for this calendar.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let mut cal = CompactCalendar::new(2000, 2050);
cal.insert(NaiveDate::from_ymd(2022, 8, 12));
cal.insert(NaiveDate::from_ymd(2022, 3, 5));
assert_eq!(cal.count(), 2);
source

pub fn serialize(&self, writer: impl Write) -> Result<()>

Serialize this calendar into a writer.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let mut cal = CompactCalendar::new(2000, 2050);

let mut buf1 = Vec::new();
cal.insert(NaiveDate::from_ymd(2022, 8, 12));
cal.serialize(&mut buf1).unwrap();

let mut buf2 = Vec::new();
cal.insert(NaiveDate::from_ymd(2022, 3, 5));
cal.serialize(&mut buf2).unwrap();

assert_ne!(buf1, buf2);
source

pub fn deserialize(reader: impl Read) -> Result<Self>

Deserialize a calendar from a reader.

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let mut cal1 = CompactCalendar::new(2000, 2050);
cal1.insert(NaiveDate::from_ymd(2022, 8, 12));
cal1.insert(NaiveDate::from_ymd(2022, 3, 5));

let mut buf = Vec::new();
cal1.serialize(&mut buf).unwrap();

let cal2 = CompactCalendar::deserialize(buf.as_slice()).unwrap();
assert_eq!(cal1, cal2);

Trait Implementations§

source§

impl Clone for CompactCalendar

source§

fn clone(&self) -> CompactCalendar

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CompactCalendar

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

use compact_calendar::CompactCalendar;
use chrono::NaiveDate;

let mut cal = CompactCalendar::new(2000, 2050);
cal.insert(NaiveDate::from_ymd(2022, 8, 12));
cal.insert(NaiveDate::from_ymd(2022, 3, 5));

assert_eq!(
    format!("{cal:?}"),
    "CompactCalendar { first_year: 2000, last_year: 2050, calendar: {2022-03-05, 2022-08-12} }",
);
source§

impl Hash for CompactCalendar

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for CompactCalendar

source§

fn cmp(&self, other: &CompactCalendar) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for CompactCalendar

source§

fn eq(&self, other: &CompactCalendar) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for CompactCalendar

source§

fn partial_cmp(&self, other: &CompactCalendar) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Eq for CompactCalendar

source§

impl StructuralEq for CompactCalendar

source§

impl StructuralPartialEq for CompactCalendar

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.