| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-03 | Add test for `int_format_into` feature | Guillaume Gomez | -20/+27 | |
| 2025-06-20 | Rollup merge of #142668 - hkBst:less-static-mut, r=tgross35 | Trevor Gross | -211/+75 | |
| vec_deque/fmt/vec tests: remove static mut More rust-lang/rust#125035. r? ```@tgross35``` | ||||
| 2025-06-20 | Auto merge of #142294 - GuillaumeGomez:specialize-tostring-on-128-integers, ↵ | bors | -0/+4 | |
| r=tgross35 Use a distinct `ToString` implementation for `u128` and `i128` Part of https://github.com/rust-lang/rust/issues/135543. Follow-up of rust-lang/rust#136264. When working on https://github.com/rust-lang/rust/pull/142098, I realized that `i128` and `u128` could also benefit from a distinct `ToString` implementation so here it. The last commit is just me realizing that I forgot to add the format tests for `usize` and `isize`. Here is the bench comparison: | bench name | last nightly | with this PR | diff | |-|-|-|-| | bench_i128 | 29.25 ns/iter (+/- 0.66) | 17.52 ns/iter (+/- 0.7) | -40.1% | | bench_u128 | 34.06 ns/iter (+/- 0.21) | 16.1 ns/iter (+/- 0.6) | -52.7% | I used this code to test: ```rust #![feature(test)] extern crate test; use test::{Bencher, black_box}; #[inline(always)] fn convert_to_string<T: ToString>(n: T) -> String { n.to_string() } macro_rules! decl_benches { ($($name:ident: $ty:ident,)+) => { $( #[bench] fn $name(c: &mut Bencher) { c.iter(|| convert_to_string(black_box({ let nb: $ty = 20; nb }))); } )+ } } decl_benches! { bench_u128: u128, bench_i128: i128, } ``` | ||||
| 2025-06-19 | vec_deque alloctests: remove static mut | Marijn Schouten | -101/+18 | |
| 2025-06-19 | vec tests: remove static mut | Marijn Schouten | -90/+31 | |
| 2025-06-18 | remove duplicate crash test | Marijn Schouten | -80/+1 | |
| 2025-06-18 | fmt tests: remove static mut | Marijn Schouten | -20/+26 | |
| 2025-06-16 | Extend num tests on `usize` and `isize` as well | Guillaume Gomez | -0/+4 | |
| 2025-06-13 | Rollup merge of #142046 - Qelxiros:122742-vec_peek_mut, r=cuviper | Jubilee | -0/+18 | |
| add Vec::peek_mut Tracking issue: rust-lang/rust#122742 | ||||
| 2025-06-12 | Rollup merge of #138016 - nwoods-cimpress:slice_chunkby_clone, r=dtolnay | Matthias Krüger | -0/+13 | |
| Added `Clone` implementation for `ChunkBy` Added `Clone` implementation for `ChunkBy` Closes rust-lang/rust#137969. | ||||
| 2025-06-11 | update docs, test | Jeremy Smart | -0/+2 | |
| 2025-06-06 | fix tests | Jeremy Smart | -3/+8 | |
| 2025-06-04 | add Vec::peek_mut | Jeremy Smart | -0/+11 | |
| 2025-05-27 | Update tests with Range parameter to `BTreeMap::extract_if` etc. | Sidney Cammeresi | -2/+12 | |
| 2025-05-12 | update cfg(bootstrap) | Pietro Albini | -1/+1 | |
| 2025-05-05 | Implement `VecDeque::truncate_front()` | Vladimir Krivopalov | -0/+70 | |
| Tracking issue: #140667 Signed-off-by: Vladimir Krivopalov <vladimir.krivopalov@gmail.com> | ||||
| 2025-04-24 | Suggest {to,from}_ne_bytes for transmutations between arrays and integers, etc | bendn | -0/+1 | |
| 2025-04-18 | Move `<CStr as Debug>` test to coretests | Tamir Duberstein | -6/+0 | |
| 2025-04-05 | Rollup merge of #138546 - GuillaumeGomez:integer-to-string-tests, r=Amanieu | Stuart Cook | -0/+70 | |
| Add integer to string formatting tests As discussed in https://github.com/rust-lang/rust/pull/136264, there doesn't seem to have tests to ensure that int to string conversion is performed correctly, only sporadic tests here and there. Now we have some basic tests. :) r? `````@Mark-Simulacrum````` | ||||
| 2025-03-29 | Add a test for `Weak` created from `UniqueArc::downgrade` | Frank King | -1/+22 | |
| 2025-03-23 | Tweak integer to string conversion test a bit to be future-proof | Guillaume Gomez | -2/+2 | |
| 2025-03-22 | Implement `UniqueArc` | Frank King | -1/+4 | |
| 2025-03-16 | Add integer to string formatting tests | Guillaume Gomez | -0/+70 | |
| 2025-03-10 | Added `Clone` implementation for `ChunkBy` | Nathaniel Woods | -0/+13 | |
| 2025-03-07 | Move last remaining Rc test to alloctests | bjorn3 | -0/+18 | |
| 2025-03-07 | Move most Rc tests to alloctests | bjorn3 | -1/+648 | |
| 2025-03-07 | Move all alloc integration tests to a new alloctests crate | bjorn3 | -0/+15603 | |
