summary refs log tree commit diff
path: root/src/liballoc
AgeCommit message (Expand)AuthorLines
2020-06-20Update stability attribute of new Vec PartialEq implsDavid Tolnay-13/+13
2020-06-20impl PartialEq<Vec<B>> for &[A], &mut [A]Solomon Ucko-0/+59
2020-06-20Satisfy tidyOliver Scherer-1/+1
2020-06-20Remove uses of `Vec::remove_item`Lukas Kalbertodt-16/+0
2020-06-20Deprecate `Vec::remove_item`Lukas Kalbertodt-10/+8
2020-06-20Add liballoc impl SpecFromElem for i8Ivan Tham-1/+15
2020-06-19Rollup merge of #73465 - lzutao:spec-char-tostring, r=sfacklerManish Goregaokar-0/+8
2020-06-19Rollup merge of #72709 - LeSeulArtichaut:unsafe-liballoc, r=nikomatsakisManish Goregaokar-257/+387
2020-06-19Apply suggestions from code reviewLeSeulArtichaut-9/+11
2020-06-19`#[deny(unsafe_op_in_unsafe_fn)]` in liballocLeSeulArtichaut-261/+389
2020-06-19Rollup merge of #73479 - pickfire:liballoc-spell, r=dtolnayRalf Jung-3/+3
2020-06-19Rollup merge of #73459 - cuviper:into_boxed_slice-unicast, r=dtolnayRalf Jung-1/+1
2020-06-19Rearrange liballoc __impl_slice_eq1Ivan Tham-1/+1
2020-06-19Liballoc clean up macro_rules styleIvan Tham-1/+1
2020-06-19Fix liballoc doc spellingIvan Tham-1/+1
2020-06-18Ensure std benchmarks get tested.Eric Huss-0/+1
2020-06-18add test for char into stringMatthias Krüger-0/+7
2020-06-18impl From<char> for StringMatthias Krüger-0/+8
2020-06-18Add specialization of `ToString for char`Lzu Tao-0/+8
2020-06-17Reduce pointer casts in Box::into_boxed_sliceJosh Stone-1/+1
2020-06-15Rollup merge of #72584 - CAD97:stabilize-58957, r=dtolnayRalf Jung-2/+8
2020-06-12Rollup merge of #72906 - lzutao:migrate-numeric-assoc-consts, r=dtolnayDylan DPC-17/+17
2020-06-10Migrate to numeric associated constsLzu Tao-17/+17
2020-06-09Rename some identifiers in `RawVec` and `libarena`.Nicholas Nethercote-53/+36
2020-06-09Remove `RawVec::reserve_in_place`.Nicholas Nethercote-39/+6
2020-06-08Rollup merge of #72811 - pickfire:liballoc-impl, r=AmanieuRalf Jung-42/+40
2020-06-08Rollup merge of #72583 - CAD97:vec-iter-asref-slice, r=dtolnayRalf Jung-0/+7
2020-06-06Elide type on liballoc vecIvan Tham-1/+1
2020-06-05Auto merge of #73025 - Dylan-DPC:rollup-a1uzj5u, r=Dylan-DPCbors-1/+1
2020-06-05Auto merge of #72957 - Mark-Simulacrum:bootstrap-bump, r=sfacklerbors-24/+5
2020-06-05Use assert_eq for liballoc testIvan Tham-1/+1
2020-06-05Add more assert to Vec with_capacity docsIvan Tham-0/+3
2020-06-03Bump to 1.46Mark Rousskov-24/+5
2020-06-03Add assert to Vec with_capacity docsIvan Tham-0/+2
2020-06-01Mention that BTreeMap::new() doesn't allocateTrolledWoods-0/+2
2020-05-31Merge raw_vec into_box with previous impl<T, Global>Ivan Tham-26/+24
2020-05-31Rearrange impl blocks with Deref as firstIvan Tham-16/+16
2020-05-30Rollup merge of #72499 - mendess:master, r=dtolnayRalf Jung-0/+41
2020-05-30Rollup merge of #72162 - cuviper:extend_one, r=Mark-SimulacrumYuki Okushi-0/+126
2020-05-29Add Extend::{extend_one,extend_reserve}Josh Stone-0/+126
2020-05-29Auto merge of #72756 - RalfJung:rollup-tbjmtx2, r=RalfJungbors-0/+19
2020-05-29Rollup merge of #71095 - pickfire:box-from-array, r=dtolnayRalf Jung-0/+19
2020-05-29Rollup merge of #72701 - pickfire:patch-1, r=Mark-SimulacrumDylan DPC-1/+1
2020-05-29Remove flaky test and document the other's flakinessmendess-8/+5
2020-05-29Rollup merge of #72288 - vorner:stabilize-weak-into-raw, r=dtolnayYuki Okushi-24/+8
2020-05-29Fix grammar in liballoc raw_vecIvan Tham-1/+1
2020-05-27added .collect() into String from Box<str> with fake feature/stability annota...djugei-0/+16
2020-05-27Rollup merge of #72533 - Diggsey:db-fix-arc-ub2, r=dtolnayDylan DPC-9/+26
2020-05-25stabilize vec_drain_as_sliceCAD97-2/+8
2020-05-25impl AsRef<[T]> for vec::IntoIter<T>CAD97-0/+7