malachite-float 0.9.1

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 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;