periodical 0.3.0

Management of all kinds of time intervals, use it to manage schedules, find overlaps, and more!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Precision change for absolute intervals and bounds

pub mod bound;
pub mod interval;

#[cfg(test)]
mod bound_tests;
#[cfg(test)]
mod interval_tests;

#[doc(inline)]
pub use bound::PreciseAbsBound;
#[doc(inline)]
pub use interval::PreciseAbsInterval;