pub type U32<const MIN: i64, const MAX: i64> = IntRange<u32, 0xffffffff, MIN, MAX>;
Expand description
Quantizes/dequantizes to a value stored in an u32
, using the full range of the u32
.
The range for the unquantized value is between MIN
and MAX
. Values outside of this are clamped.
Aliased Type§
struct U32<const MIN: i64, const MAX: i64>(/* private fields */);