/// A trait to check if a type is normalized.
pubtraitIsNormalized{typeTolerance:Copy;/// Checks if the type is normalized.
#[allow(clippy::wrong_self_convention)]fnis_normalized(self)->bool;/// Checks if the type is normalized within a given tolerance.
#[allow(clippy::wrong_self_convention)]fnis_normalized_tol(self, tol:Self::Tolerance)->bool;}