U8

Type Alias U8 

Source
pub type U8<const MIN: i64, const MAX: i64> = IntRange<u8, 0xff, MIN, MAX>;
Expand description

Quantizes/dequantizes to a value stored in an u8, using the full range of the u8. The range for the unquantized value is between MIN and MAX. Values outside of this are clamped.

Aliased Typeยง

pub struct U8<const MIN: i64, const MAX: i64>(/* private fields */);