malachite_base/comparison/
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/// Macros related to comparing values.
10///
11/// This module defines the `min` and `max` macros.
12#[macro_use]
13pub mod macros;
14/// Traits related to comparing values.
15pub mod traits;