malachite_float/basic/
mod.rs

1// Copyright © 2025 Mikhail Hogrefe
2//
3// This file is part of Malachite.
4//
5// Malachite is free software: you can redistribute it and/or modify it under the terms of the GNU
6// Lesser General Public License (LGPL) as published by the Free Software Foundation; either version
7// 3 of the License, or (at your option) any later version. See <https://www.gnu.org/licenses/>.
8
9/// Classification of a [`Float`](super::Float) into several kinds.
10pub mod classification;
11/// Measuring the complexity to a [`Float`](super::Float).
12pub mod complexity;
13/// Various [`Float`](super::Float) constants. This module contains actual Rust constants like
14/// [`One`](super::Float#impl-One-for-Float), and functions like [`one`](super::Float::one_prec)
15/// which accept a precision.
16#[macro_use]
17pub mod constants;
18/// Getting and setting the components of a [`Float`](super::Float).
19pub mod get_and_set;
20/// Getting [`Float`](super::Float)'s ulp (unit in the last place).
21pub mod ulp;