1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "with_error_cause")]
macro_rules! invalid {
    ($create:expr) => {
        Err(RangeUnsatisfiableError::new($create))
    };
}

#[cfg(not(feature = "with_error_cause"))]
macro_rules! invalid {
    ($create:expr) => {
        Err(RangeUnsatisfiableError)
    };
}