/// A trait for types that have a minimum value.
///
/// This trait must be implemented for `T` in [`OrdMask<T>`](crate::OrdMask).
///
/// The library provides implementations for all standard integer types:
/// `u8`, `u16`, `u32`, `u64`, `u128`, `usize`, `i8`, `i16`, `i32`, `i64`, `i128`, `isize`.
///
/// # Example
///
/// ```
/// use ordmask::{WithMin, ordmask};
///
/// assert_eq!(i32::MIN, <i32 as WithMin>::MIN);
///
/// #[derive(Clone, Ord, PartialOrd, Eq, PartialEq)]
/// struct MyType(i32);
///
/// impl WithMin for MyType {
/// const MIN: Self = MyType(i32::MIN);
/// }
///
/// assert!(ordmask![..].included(&MyType(1)));
///
/// ```
impl_for!
impl_for!