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