about summary refs log tree commit diff
path: root/library/alloc
AgeCommit message (Expand)AuthorLines
2020-09-10BTreeMap: pull the map's root out of NodeRefStein Somers-117/+163
2020-09-09Add documentation for `impl<T> From<BinaryHeap<T>> for Vec<T>`Michael Howell-0/+4
2020-09-09Formatcarbotaniuman-3/+3
2020-09-09Add WeakInner<'_> and have Weak::inner() return itcarbotaniuman-39/+70
2020-09-09Disable AsRef implementations for String's Drain.Mara Bos-14/+15
2020-09-09Eliminate mut reference UB in Drop impl for Rc<T>carbotaniuman-1/+1
2020-09-09Mark AsRef impls for String's Drain as stable.Mara Bos-2/+2
2020-09-09Remove internal and unstable MaybeUninit::UNINIT.Mara Bos-5/+4
2020-09-09Add AsRef<[u8]> for String's Drain.Mara Bos-0/+7
2020-09-09Show remaining data in string::Drain's Debug impl.Mara Bos-1/+1
2020-09-09Add as_str() and AsRef to string::Drain.Mara Bos-0/+26
2020-09-09BTreeMap: avoid aliasing by avoiding slicesStein Somers-167/+204
2020-09-09make as_leaf return a raw pointer, to reduce aliasing assumptionsRalf Jung-7/+12
2020-09-08Capitalize safety commentsFlying-Toast-2/+2
2020-09-08Update library/alloc/src/collections/vec_deque.rs Braden Nelson-1/+1
2020-09-08Convert MAXIMUM_ZST_CAPACITY to be calculated in amoonheart08-6/+2
2020-09-07Auto merge of #76368 - ayushmishra2005:move_str_contact_library, r=jyn514bors-0/+8
2020-09-07Typo fix scottmcm-1/+1
2020-09-07Rollup merge of #76324 - ayushmishra2005:move_vec_tests_in_library, r=matkladDylan DPC-0/+23
2020-09-07Rollup merge of #76305 - CDirkx:const-tests, r=matkladDylan DPC-0/+14
2020-09-07Rollup merge of #76303 - jyn514:vec-assert-doc, r=Dylan-DPCDylan DPC-0/+3
2020-09-07Rollup merge of #76273 - CraftSpider:master, r=matkladDylan DPC-0/+56
2020-09-06Clean up vec benches bench_in_place styleIvan Tham-22/+21
2020-09-06Move test-cases in string.rsAyush Kumar Mishra-8/+8
2020-09-05Auto merge of #76217 - RalfJung:maybe-uninit-slice, r=KodrAusbors-11/+15
2020-09-05Nightly is currently 1.48scottmcm-1/+1
2020-09-05rename MaybeUninit slice methodsRalf Jung-11/+15
2020-09-05Rollup merge of #76060 - pickfire:patch-12, r=jyn514Dylan DPC-1/+3
2020-09-05Rollup merge of #75994 - mental32:impl-rc-new-cyclic, r=KodrAusDylan DPC-0/+110
2020-09-05Move Various str tests in libraryAyush Kumar Mishra-0/+21
2020-09-05Added str tests in libraryAyush Kumar Mishra-0/+8
2020-09-04Re-export ArrayChunksMut in allocJosh Stone-0/+2
2020-09-04Auto merge of #75200 - ssomers:btree_valmut, r=Mark-Simulacrumbors-171/+319
2020-09-04Auto merge of #75207 - dylni:add-slice-check-range, r=KodrAusbors-71/+22
2020-09-04Move Vec slice UI tests in libraryAyush Kumar Mishra-0/+23
2020-09-03Add `[T; N]: TryFrom<Vec<T>>`Scott McMurray-0/+52
2020-09-04Add slice primitive link to vecIvan Tham-1/+2
2020-09-04Move various ui const tests to `library`Christiaan Dirkx-0/+14
2020-09-04Add tests for overflow in String / VecDeque operations using rangesTomasz Miąsko-0/+45
2020-09-04Add tests for overflow in Vec::drainTomasz Miąsko-0/+25
2020-09-03Link to `#capacity-and-reallocation` when using with_capacityJoshua Nelson-0/+3
2020-09-03fix debug assertionThe8472-4/+18
2020-09-03Remove vec-to_str.rs, merge the remaining test in with vecRune Tynan-0/+3
2020-09-03improve comments and namingThe8472-25/+56
2020-09-03add explanation to specialization markerThe8472-0/+6
2020-09-03remove separate no-drop code path since it resulted in more LLVM IRThe8472-32/+15
2020-09-03remove empty Vec extend optimizationThe8472-24/+2
2020-09-03get things to work under min_specialization by leaning more heavily on #[rust...The8472-8/+14
2020-09-03fix benchmark compile errorsThe8472-12/+9
2020-09-03apply required min_specialization attributesThe8472-1/+7