/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/usecrate::Float106;implFloat106{/// Returns the high-order component.
#[inline(always)]pubconstfnhi(self)->f64{self.hi
}/// Returns the low-order component.
#[inline(always)]pubconstfnlo(self)->f64{self.lo
}/// Converts to `f64`, discarding the low component.
#[inline]pubconstfnto_f64(self)->f64{self.hi
}}