Skip to content

Commit

Permalink
Alphabetise
Browse files Browse the repository at this point in the history
  • Loading branch information
varkor committed Jun 5, 2019
1 parent 7457338 commit 5597bf2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/math/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ mod log1pf;
mod log2;
mod log2f;
mod logf;
mod max;
mod maxf;
mod min;
mod minf;
mod modf;
mod modff;
mod pow;
Expand All @@ -166,10 +170,6 @@ mod tgamma;
mod tgammaf;
mod trunc;
mod truncf;
mod min;
mod minf;
mod max;
mod maxf;

// Use separated imports instead of {}-grouped imports for easier merging.
pub use self::acos::acos;
Expand Down Expand Up @@ -250,6 +250,10 @@ pub use self::log1pf::log1pf;
pub use self::log2::log2;
pub use self::log2f::log2f;
pub use self::logf::logf;
pub use self::max::max;
pub use self::maxf::maxf;
pub use self::min::min;
pub use self::minf::minf;
pub use self::modf::modf;
pub use self::modff::modff;
pub use self::pow::pow;
Expand All @@ -276,10 +280,6 @@ pub use self::tgamma::tgamma;
pub use self::tgammaf::tgammaf;
pub use self::trunc::trunc;
pub use self::truncf::truncf;
pub use self::min::min;
pub use self::minf::minf;
pub use self::max::max;
pub use self::maxf::maxf;

// Private modules
mod expo2;
Expand Down

0 comments on commit 5597bf2

Please sign in to comment.