File tree 2 files changed +13
-14
lines changed
2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ use num::Float;
22
22
use num:: FpCategory as Fp ;
23
23
use option:: Option ;
24
24
25
- #[ stable ]
25
+ #[ unstable = "pending integer conventions" ]
26
26
pub const RADIX : uint = 2 u;
27
27
28
- #[ stable ]
28
+ #[ unstable = "pending integer conventions" ]
29
29
pub const MANTISSA_DIGITS : uint = 24 u;
30
- #[ stable ]
30
+ #[ unstable = "pending integer conventions" ]
31
31
pub const DIGITS : uint = 6 u;
32
32
33
33
#[ stable]
@@ -43,14 +43,14 @@ pub const MIN_POS_VALUE: f32 = 1.17549435e-38_f32;
43
43
#[ stable]
44
44
pub const MAX_VALUE : f32 = 3.40282347e+38_f32 ;
45
45
46
- #[ stable ]
46
+ #[ unstable = "pending integer conventions" ]
47
47
pub const MIN_EXP : int = -125 ;
48
- #[ stable ]
48
+ #[ unstable = "pending integer conventions" ]
49
49
pub const MAX_EXP : int = 128 ;
50
50
51
- #[ stable ]
51
+ #[ unstable = "pending integer conventions" ]
52
52
pub const MIN_10_EXP : int = -37 ;
53
- #[ stable ]
53
+ #[ unstable = "pending integer conventions" ]
54
54
pub const MAX_10_EXP : int = 38 ;
55
55
56
56
#[ stable]
Original file line number Diff line number Diff line change @@ -26,12 +26,11 @@ use option::Option;
26
26
// constants are implemented in favour of referencing the respective
27
27
// members of `Bounded` and `Float`.
28
28
29
- #[ stable ]
29
+ #[ unstable = "pending integer conventions" ]
30
30
pub const RADIX : uint = 2 u;
31
31
32
- #[ stable]
33
32
pub const MANTISSA_DIGITS : uint = 53 u;
34
- #[ stable ]
33
+ #[ unstable = "pending integer conventions" ]
35
34
pub const DIGITS : uint = 15 u;
36
35
37
36
#[ stable]
@@ -47,14 +46,14 @@ pub const MIN_POS_VALUE: f64 = 2.2250738585072014e-308_f64;
47
46
#[ stable]
48
47
pub const MAX_VALUE : f64 = 1.7976931348623157e+308_f64 ;
49
48
50
- #[ stable ]
49
+ #[ unstable = "pending integer conventions" ]
51
50
pub const MIN_EXP : int = -1021 ;
52
- #[ stable ]
51
+ #[ unstable = "pending integer conventions" ]
53
52
pub const MAX_EXP : int = 1024 ;
54
53
55
- #[ stable ]
54
+ #[ unstable = "pending integer conventions" ]
56
55
pub const MIN_10_EXP : int = -307 ;
57
- #[ stable ]
56
+ #[ unstable = "pending integer conventions" ]
58
57
pub const MAX_10_EXP : int = 308 ;
59
58
60
59
#[ stable]
You can’t perform that action at this time.
0 commit comments