about summary refs log tree commit diff
path: root/src/liballoc
AgeCommit message (Expand)AuthorLines
2017-11-29Rollup merge of #46219 - rust-lang:frewsxcv-issue-45636, r=GuillaumeGomezkennytm-13/+106
2017-11-29Rollup merge of #46077 - LukasKalbertodt:stabilize-ascii-ctype, r=alexcrichtonkennytm-261/+0
2017-11-28Rollup merge of #46262 - udoprog:linked-list-remove-if, r=dtolnaykennytm-0/+327
2017-11-26Rollup merge of #46269 - udoprog:check-links, r=KodrAuskennytm-0/+7
2017-11-26Rollup merge of #46201 - davidalber:eprint-in-fmt-doc, r=frewsxcvkennytm-0/+10
2017-11-26Check tail node in check_linksJohn-John Tedro-0/+7
2017-11-25Implement LinkedList::drain_filterJohn-John Tedro-35/+283
2017-11-25Introduce LinkedList::remove_ifJohn-John Tedro-0/+79
2017-11-25Auto merge of #46117 - SimonSapin:min-align, r=alexcrichtonbors-0/+49
2017-11-24Improve documentation for slice swap/copy/clone operations.Corey Farwell-13/+106
2017-11-23Auto merge of #46225 - GuillaumeGomez:rollup, r=GuillaumeGomezbors-9/+9
2017-11-23Rollup merge of #46218 - rust-lang:frewsxcv-rename-slice-swap-param, r=kennytmGuillaume Gomez-9/+9
2017-11-23Auto merge of #45881 - Centril:box-leak, r=alexcrichtonbors-0/+53
2017-11-22Adding `eprint*!` to the list of macros in the `format!` familyDavid Alber-0/+10
2017-11-22Rename param in `[T]::swap_with_slice` from `src` to `other`.Corey Farwell-9/+9
2017-11-22Box::leak: update unstable issue number (46179).Mazdak-1/+1
2017-11-21fix some typosMartin Lindhe-8/+8
2017-11-21Rollup merge of #46128 - Coding-Doctors:patch-1, r=dtolnaykennytm-1/+1
2017-11-21Rollup merge of #46122 - malbarbo:docs, r=steveklabnikkennytm-1/+1
2017-11-20Fix result for assert_eqBenjamin Hoffmeyer-1/+1
2017-11-20Fix doc tests for trim_right_matchesBenjamin Hoffmeyer-1/+1
2017-11-20Print the address of the pointed value in Pointer impl for Rc and ArcMarco A L Barbosa-2/+2
2017-11-20Fix some docs summary nitsMarco A L Barbosa-1/+1
2017-11-20alloc_jemalloc: don’t assume MIN_ALIGN for small sizesSimon Sapin-0/+5
2017-11-20alloc_system: don’t assume MIN_ALIGN for small sizes, fix #45955Simon Sapin-0/+44
2017-11-19rustc: don't special-case Box<T> as having a pointer layout.Eduard-Mihai Burtescu-4/+14
2017-11-18Remove inherent `ascii_ctype` methods from `str` and `[u8]`Lukas Kalbertodt-261/+0
2017-11-14examples in Cow::into_owned don't need to wrap result in CowsQuietMisdreavus-2/+2
2017-11-14Fixed several pulldown warnings when documenting libstd.kennytm-1/+1
2017-11-10Rollup merge of #45878 - jhford:use-get-in-get-example, r=kennytmkennytm-4/+4
2017-11-09Box::leak - made an oops, fixed now =)Mazdak-1/+4
2017-11-09Box::leak - updated documentationMazdak-2/+2
2017-11-09Box::leak - relaxed constraints wrt. lifetimesMazdak-2/+2
2017-11-08std: Remove `rand` crate and moduleAlex Crichton-2/+10
2017-11-09Box::leak - fixed bug in documentationMazdak-8/+16
2017-11-08Box::leak - improve documentationMazdak-5/+6
2017-11-08added associated function Box::leakMazdak-0/+41
2017-11-08get() example should use get() not get_mut()John Ford-4/+4
2017-11-05Auto merge of #44042 - LukasKalbertodt:ascii-methods-on-instrinsics, r=alexcr...bors-16/+490
2017-11-04Rollup merge of #45681 - Ljzn:patch-1, r=kennytmkennytm-1/+1
2017-11-03Mark several ascii methods as unstable againLukas Kalbertodt-20/+25
2017-11-03Remove unused AsciiExt imports and fix tests related to ascii methodsLukas Kalbertodt-16/+0
2017-11-03Copy `AsciiExt` methods to `str` directlyLukas Kalbertodt-1/+277
2017-11-03Copy `AsciiExt` methods to `[u8]` directlyLukas Kalbertodt-0/+209
2017-11-02Auto merge of #45306 - whitequark:ref_slice, r=alexcrichtonbors-0/+3
2017-11-01De-stabilize core::slice::{from_ref, from_ref_mut}.whitequark-1/+2
2017-11-01Fix typo.Lance John-1/+1
2017-10-23Bring back slice::ref_slice as slice::from_ref.whitequark-0/+2
2017-10-20Fix most rendering warnings from switching to CommonMarksteveklabnik-4/+3
2017-10-17added non trivial examples of closures for str::findChristian Poveda-2/+2