about summary refs log tree commit diff
path: root/src/libcore
AgeCommit message (Expand)AuthorLines
2019-05-20remove confusing remarks about mixed volatile and non-volatile accessesRalf Jung-6/+0
2019-05-19Fix data types indicationVeryTastyTomato-2/+2
2019-05-19Rollup merge of #60947 - blkerby:global_alloc_typo, r=jonas-schievinkMazdak Farrokhzad-2/+2
2019-05-19Rollup merge of #60943 - blkerby:master, r=Mark-SimulacrumMazdak Farrokhzad-1/+1
2019-05-19Rollup merge of #60931 - cuviper:array-iter, r=KodrAusMazdak Farrokhzad-16/+16
2019-05-19Rollup merge of #60370 - Richard-W:const-layout-construction, r=sfacklerMazdak Farrokhzad-1/+13
2019-05-18Fix typos in docs of GlobalAllocBrent Kerby-2/+2
2019-05-18fix copy-paste typo in docs for ptr::read_volatileBrent Kerby-1/+1
2019-05-17Use iter() for iterating arrays by sliceJosh Stone-16/+16
2019-05-16Rollup merge of #59923 - czipperz:fix-convert-doc-links, r=steveklabnikMazdak Farrokhzad-20/+20
2019-05-15Stabilize RefCell::try_borrow_unguardedSimon Sapin-2/+1
2019-05-14Rollup merge of #60808 - Schultzer:improve-must-use-linit-for-future, r=CentrilMazdak Farrokhzad-1/+1
2019-05-14Rollup merge of #60443 - RalfJung:as_ptr, r=SimonSapinMazdak Farrokhzad-0/+10
2019-05-14Rollup merge of #60130 - khuey:efficient_last, r=sfacklerMazdak Farrokhzad-0/+47
2019-05-14new implementation for nth_back for chunkswizAmit-6/+27
2019-05-14Add const_unchecked_layout test to libcore/testsRichard Wiedenhöft-0/+12
2019-05-14Mark core::alloc::Layout::from_size_align_unchecked constRichard Wiedenhöft-1/+1
2019-05-14hopefully working nth_back on chunks@amit.chandra-9/+17
2019-05-14wip nth_back on chunks@amit.chandra-0/+29
2019-05-13Improve the "must use" lint for `Future`Benjamin Schultzer-1/+1
2019-05-13Rollup merge of #60201 - RalfJung:core-tests, r=alexcrichtonMazdak Farrokhzad-1/+1
2019-05-12Auto merge of #60244 - SimonSapin:dangling, r=oli-obkbors-2/+0
2019-05-11Auto merge of #60318 - jethrogb:jb/try-from-slice-to-infallible, r=sfacklerbors-1/+8
2019-05-10Auto merge of #60588 - cuviper:be-simd-swap, r=alexcrichtonbors-4/+1
2019-05-09Rollup merge of #60657 - JohnTitor:stabilize-array, r=SimonSapinMazdak Farrokhzad-4/+6
2019-05-09Rollup merge of #60638 - RalfJung:pin, r=sanxiynMazdak Farrokhzad-1/+1
2019-05-09Rollup merge of #60601 - SimonSapin:cast, r=KimundiMazdak Farrokhzad-0/+14
2019-05-09Stabilize and re-export core::arrayYuki OKUSHI-4/+6
2019-05-09Rollup merge of #59979 - stepancheg:num-size, r=ehussMazdak Farrokhzad-30/+83
2019-05-08pin: make the to-module link more visibleRalf Jung-1/+1
2019-05-07Rollup merge of #60609 - spastorino:be-explicit-on-mem-replace-doc, r=CentrilMazdak Farrokhzad-2/+2
2019-05-07Be a bit more explicit asserting over the vec rather than the lenSantiago Pastorino-2/+2
2019-05-07Add a `cast` method to raw pointers.Simon Sapin-0/+14
2019-05-06Revert "Disable big-endian simd in swap_nonoverlapping_bytes"Josh Stone-4/+1
2019-05-05to_xe_bytes for isize and usize returns an array of different sizeStepan Koltsov-30/+83
2019-05-05Implement nth_back for RChunks(Exact)(Mut)Tim Vermeulen-0/+124
2019-05-04Fix intra-doc link resolution failure on re-exporting libstdTaiki Endo-0/+23
2019-05-03Add custom nth_back for ChainAndrea Corradi-0/+39
2019-05-02clarify wordingRalf Jung-5/+4
2019-05-01as_ptr returns a read-only pointerRalf Jung-0/+11
2019-04-29Rollup merge of #60356 - JohnTitor:stabilize-as-mut-ptr, r=CentrilMazdak Farrokhzad-1/+1
2019-04-29Rollup merge of #60256 - ethanboxx:master, r=alexcrichtonMazdak Farrokhzad-1/+31
2019-04-29Rollup merge of #59946 - mernen:patch-2, r=ehussMazdak Farrokhzad-1/+1
2019-04-29impl From<Infallible> for TryFromSliceErrorJethro Beekman-1/+8
2019-04-29Auto merge of #60364 - JohnTitor:stabilize-const-needs-drop, r=oli-obkbors-1/+0
2019-04-29const-stabilize std::mem::needs_dropYuki OKUSHI-1/+0
2019-04-29Stabilize str::as_mut_ptrYuki OKUSHI-1/+1
2019-04-27Rename .cap() methods to .capacity()Matthias Geier-2/+2
2019-04-27Stabilize Iterator::copied in 1.36.0.Mazdak Farrokhzad-11/+9
2019-04-26Add flatten option for `Option<Option<T>>`Ethan Brierley-1/+31