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 70cc557 commit 7df1e74Copy full SHA for 7df1e74
lexical-benchmark/parse-float/black_box.rs
@@ -10,4 +10,4 @@ pub fn black_box(mut dummy: f64) -> f64 {
10
);
11
dummy
12
}
13
-}
+}
lexical-write-integer/src/decimal.rs
@@ -276,7 +276,8 @@ decimal_impl! { u32 u64 }
276
impl Decimal for u128 {
277
#[inline(always)]
278
fn decimal(self, buffer: &mut [u8]) -> usize {
279
- // SAFETY: safe since we've guaranteed the buffer is large enough to hold the max value.
+ // SAFETY: safe since we've guaranteed the buffer is large enough to hold the
280
+ // max value.
281
let count = self.digit_count();
282
assert!(count <= buffer.len());
283
unsafe {
0 commit comments