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
15
16
17
18
//! Utilities for comparing and ordering bounds.
//!
//! This is needed because bounds can be compared in two ways:
//! syntactically (in which case a start and end bound positioned on the same place will be considered different),
//! and semantically (in which case since they represent the same place, they are considered equal).

pub mod bound_eq;
pub mod bound_ord;

#[cfg(test)]
mod bound_eq_tests;
#[cfg(test)]
mod bound_ord_tests;

#[doc(inline)]
pub use bound_eq::*;
#[doc(inline)]
pub use bound_ord::*;