rebounded 1.2.2

Bounded types
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Values bound by some kind of interval.

mod ints;

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

pub enum Error {
    BelowLowerBound,
    AboveUpperBound,
}