[][src]Type Definition r3::utils::UIntegerWithBound

type UIntegerWithBound<const MAX: u128> = <Conditional<u8, <Conditional<u16, <Conditional<u32, <Conditional<u64, u128, { MAX <= u64::MAX as u128 }> as TypeFn>::Output, { MAX <= u32::MAX as u128 }> as TypeFn>::Output, { MAX <= u16::MAX as u128 }> as TypeFn>::Output, { MAX <= u8::MAX as u128 }> as TypeFn>::Output;

Get the smallest unsigned integer type capable of representing the specified value.