We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 804845b commit 790ab24Copy full SHA for 790ab24
src/numeric/impl_float_maths.rs
@@ -5,6 +5,7 @@ use num_traits::Float;
5
6
use crate::imp_prelude::*;
7
8
+#[cfg(feature = "std")]
9
macro_rules! boolean_ops {
10
($(#[$meta1:meta])* fn $func:ident
11
$(#[$meta2:meta])* fn $all:ident
@@ -27,6 +28,7 @@ macro_rules! boolean_ops {
27
28
};
29
}
30
31
32
macro_rules! unary_ops {
33
($($(#[$meta:meta])* fn $id:ident)+) => {
34
$($(#[$meta])*
@@ -37,6 +39,7 @@ macro_rules! unary_ops {
37
39
38
40
41
42
43
macro_rules! binary_ops {
44
($($(#[$meta:meta])* fn $id:ident($ty:ty))+) => {
45
0 commit comments