This repository was archived by the owner on Apr 28, 2025. It is now read-only.
File tree 1 file changed +8
-8
lines changed 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,10 @@ mod log1pf;
140
140
mod log2;
141
141
mod log2f;
142
142
mod logf;
143
+ mod max;
144
+ mod maxf;
145
+ mod min;
146
+ mod minf;
143
147
mod modf;
144
148
mod modff;
145
149
mod pow;
@@ -166,10 +170,6 @@ mod tgamma;
166
170
mod tgammaf;
167
171
mod trunc;
168
172
mod truncf;
169
- mod min;
170
- mod minf;
171
- mod max;
172
- mod maxf;
173
173
174
174
// Use separated imports instead of {}-grouped imports for easier merging.
175
175
pub use self :: acos:: acos;
@@ -250,6 +250,10 @@ pub use self::log1pf::log1pf;
250
250
pub use self :: log2:: log2;
251
251
pub use self :: log2f:: log2f;
252
252
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;
253
257
pub use self :: modf:: modf;
254
258
pub use self :: modff:: modff;
255
259
pub use self :: pow:: pow;
@@ -276,10 +280,6 @@ pub use self::tgamma::tgamma;
276
280
pub use self :: tgammaf:: tgammaf;
277
281
pub use self :: trunc:: trunc;
278
282
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;
283
283
284
284
// Private modules
285
285
mod expo2;
You can’t perform that action at this time.
0 commit comments