We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6264a32 commit 8dcacf6Copy full SHA for 8dcacf6
src/expressions/literal-expr.md
@@ -96,6 +96,8 @@ The value of the expression is determined from the string representation of the
96
97
* If the radix is not 10, the first two characters are removed from the string.
98
99
+* Any suffix is removed from the string.
100
+
101
* Any underscores are removed from the string.
102
103
* The string is converted to a `u128` value as if by [`u128::from_str_radix`] with the chosen radix.
@@ -136,6 +138,8 @@ let x: f64 = 2.; // type f64
136
138
137
139
The value of the expression is determined from the string representation of the token as follows:
140
141
142
143
144
145
* The string is converted to the expression's type as if by [`f32::from_str`] or [`f64::from_str`].
0 commit comments