ako 0.0.3

Ako is a Rust crate that offers a practical and human-friendly approach to creating, manipulating, formatting and converting dates, times and timestamps.
Documentation
1
2
3
4
5
6
7
8
9
/// `Option::expect` but usable in a `const fn`
macro_rules! opt_expect {
    ($expr:expr, $msg:literal) => {
        match $expr {
            Some(value) => value,
            None => panic!($msg),
        }
    };
}