malachite-float 0.9.2

The arbitrary-precision floating-point type Float, with efficient algorithms partially derived from MPFR.
Documentation
// Copyright © 2026 Mikhail Hogrefe
//
// This file is part of Malachite.
//
// Malachite is free software: you can redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License (LGPL) as published by the Free Software Foundation; either version
// 3 of the License, or (at your option) any later version. See <https://www.gnu.org/licenses/>.

pub mod add;
pub mod agm;
pub mod div;
pub mod ln;
pub mod ln_1_plus_x;
pub mod log_base;
pub mod log_base_10;
pub mod log_base_10_1_plus_x;
pub mod log_base_1_plus_x;
pub mod log_base_2;
pub mod log_base_2_1_plus_x;
pub mod log_base_float_base;
pub mod log_base_float_base_1_plus_x;
pub mod log_base_power_of_2;
pub mod log_base_power_of_2_1_plus_x;
pub mod log_base_rational_base;
pub mod log_base_rational_base_1_plus_x;
pub mod log_base_rational_float_base;
pub mod log_base_rational_rational_base;
pub mod mul;
pub mod power_of_2;
pub mod reciprocal;
pub mod reciprocal_sqrt;
pub mod shl;
pub mod shl_round;
pub mod shr;
pub mod shr_round;
pub mod sqrt;
pub mod square;
pub mod sub;