summary refs log tree commit diff
path: root/src/liballoc
AgeCommit message (Expand)AuthorLines
2018-03-31Deprecate offset_to; switch core&alloc to using offset_from insteadScott McMurray-4/+5
2018-03-31Auto merge of #49481 - SimonSapin:core-heap, r=alexcrichtonbors-1086/+5
2018-03-30Add #[must_use] to a few standard library methodsScott McMurray-0/+1
2018-03-30Rollup merge of #49468 - glandium:cleanup, r=pnkfelixkennytm-2/+2
2018-03-30Rollup merge of #49466 - glandium:master, r=rkruppekennytm-2/+2
2018-03-29Move the alloc::allocator module to core::heapSimon Sapin-1086/+5
2018-03-29Move RangeArguments to {core::std}::ops and rename to RangeBoundsSimon Sapin-171/+15
2018-03-29Move alloc::Bound to {core,std}::opsSimon Sapin-59/+8
2018-03-29Remove unnecessary use core::hash in liballoc/boxed.rsMike Hommey-2/+2
2018-03-29Use f{32,64}::to_bits for is_zero test in vec::SpecFromElemMike Hommey-2/+2
2018-03-28Rollup merge of #49452 - frewsxcv:frewsxcv-vec-cap-len, r=dtolnaykennytm-3/+4
2018-03-28Rollup merge of #49400 - Diggsey:shrink-to, r=joshtriplettkennytm-2/+113
2018-03-28Rollup merge of #49243 - murarth:stabilize-retain, r=BurntSushikennytm-3/+1
2018-03-28Clarify "length" wording in `Vec::with_capacity`.Corey Farwell-3/+4
2018-03-28Add run-pass test for repeat-generic-slice featureGuillaume Gomez-0/+19
2018-03-28Add repeat method on sliceGuillaume Gomez-53/+72
2018-03-27Rollup merge of #49401 - alercah:format, r=cramertjkennytm-7/+8
2018-03-27Rollup merge of #49381 - withoutboats:str_unicode, r=SimonSapinkennytm-0/+42
2018-03-27Rollup merge of #48639 - varkor:sort_by_key-cached, r=blusskennytm-13/+111
2018-03-26Add missing '?' to format grammar.Alexis Hunt-7/+8
2018-03-27Implement `shrink_to` method on collectionsDiggory Blake-2/+113
2018-03-26Remove mentions of unstable sort_by_cached key from stable documentationvarkor-8/+0
2018-03-26Auto merge of #49101 - mark-i-m:stabilize_i128, r=nagisabors-2/+2
2018-03-26Stabilize i128_typeMark Mansi-2/+2
2018-03-26Add is_whitespace and is_alphanumeric to str.boats-0/+42
2018-03-25Implement get_key_value for HashMap, BTreeMapDiggory Blake-0/+27
2018-03-25Rollup merge of #49194 - Zoxc:unsafe-generator, r=cramertjkennytm-1/+1
2018-03-25Rollup merge of #49121 - varkor:stabilise-from_utf8_error_as_bytes, r=blusskennytm-2/+1
2018-03-23Rollup merge of #48265 - SimonSapin:nonzero, r=KodrAusAlex Crichton-16/+14
2018-03-22Rollup merge of #49117 - nivkner:fixme_fixup3, r=estebankkennytm-1/+1
2018-03-21Stabilize method `String::retain`Murarth-3/+1
2018-03-21Make resuming generators unsafe instead of the creation of immovable generato...John Kåre Alsaker-1/+1
2018-03-20Auto merge of #49190 - kennytm:rollup, r=kennytmbors-1/+1
2018-03-20Auto merge of #48516 - petrochenkov:stabsl, r=nikomatsakisbors-1/+0
2018-03-20Stabilize slice patterns without `..`Vadim Petrochenkov-1/+0
2018-03-19Auto merge of #49058 - withoutboats:pin, r=cramertjbors-2/+100
2018-03-19Docs: fix incorrect copy-paste for new `X?` in formatting stringsSimon Sapin-1/+1
2018-03-19Auto merge of #48978 - SimonSapin:debug-hex, r=KodrAusbors-0/+2
2018-03-19Add stability test for sort_by_cached_keyvarkor-3/+8
2018-03-18Update tracking issue.boats-12/+12
2018-03-18Add lexicographic sorting benchmarkvarkor-0/+16
2018-03-18Check that the size optimisation is not redundantvarkor-5/+10
2018-03-18Clarify time complexityvarkor-3/+3
2018-03-17Use NonNull<_> instead of NonZero<*const _> in btree internalsSimon Sapin-16/+14
2018-03-17Stabilise FromUtf8Error::as_bytesvarkor-2/+1
2018-03-17Improve and fix documentation for sort_by_cached_keyvarkor-8/+12
2018-03-17update FIXME(#5244) to point to RFC 1109 (Non-Copy array creation ergonomics)Niv Kaminer-1/+1
2018-03-17Fix use of unstable feature in testvarkor-2/+4
2018-03-16Add sort_by_cached_key methodvarkor-14/+56
2018-03-16Index enumeration by minimally sized typevarkor-12/+25