Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit a762159

Browse files
committed
Alphabetise
1 parent 98a45f4 commit a762159

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/math/mod.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ mod log1pf;
140140
mod log2;
141141
mod log2f;
142142
mod logf;
143+
mod max;
144+
mod maxf;
145+
mod min;
146+
mod minf;
143147
mod modf;
144148
mod modff;
145149
mod pow;
@@ -166,10 +170,6 @@ mod tgamma;
166170
mod tgammaf;
167171
mod trunc;
168172
mod truncf;
169-
mod min;
170-
mod minf;
171-
mod max;
172-
mod maxf;
173173

174174
// Use separated imports instead of {}-grouped imports for easier merging.
175175
pub use self::acos::acos;
@@ -250,6 +250,10 @@ pub use self::log1pf::log1pf;
250250
pub use self::log2::log2;
251251
pub use self::log2f::log2f;
252252
pub use self::logf::logf;
253+
pub use self::max::max;
254+
pub use self::maxf::maxf;
255+
pub use self::min::min;
256+
pub use self::minf::minf;
253257
pub use self::modf::modf;
254258
pub use self::modff::modff;
255259
pub use self::pow::pow;
@@ -276,10 +280,6 @@ pub use self::tgamma::tgamma;
276280
pub use self::tgammaf::tgammaf;
277281
pub use self::trunc::trunc;
278282
pub use self::truncf::truncf;
279-
pub use self::min::min;
280-
pub use self::minf::minf;
281-
pub use self::max::max;
282-
pub use self::maxf::maxf;
283283

284284
// Private modules
285285
mod expo2;

0 commit comments

Comments
 (0)