summary refs log tree commit diff
path: root/library/core/src
AgeCommit message (Expand)AuthorLines
2021-10-14Use correct edition for panic in [debug_]assert!() etc.Mara Bos-0/+1
2021-10-13revert stabilization of `core::task::ready!`Ibraheem Ahmed-2/+5
2021-10-13Revert "Stabilize `Iterator::intersperse()`"Jane Lusby-12/+18
2021-10-04Rollup merge of #89184 - joshtriplett:master, r=estebankJubilee-26/+26
2021-10-04Auto merge of #89144 - sexxi-goose:insig_stdlib, r=nikomatsakisbors-0/+1
2021-09-03Rollup merge of #88610 - m-ou-se:array-into-iter-docs, r=AmanieuMara Bos-2/+7
2021-09-03Rollup merge of #88579 - ast-ral:master, r=m-ou-seMara Bos-4/+0
2021-09-03Rollup merge of #88202 - azdavis:master, r=jyn514Mara Bos-0/+12
2021-09-03Update outdated docs of array::IntoIter::new.Mara Bos-2/+7
2021-09-02Rollup merge of #88582 - jhpratt:int_roundings, r=joshtriplettMara Bos-0/+271
2021-09-02Rollup merge of #88560 - klensy:formatter-pad-shrink, r=m-ou-seMara Bos-12/+17
2021-09-02Rollup merge of #88505 - ibraheemdev:use-unwrap-unchecked, r=kennytmMara Bos-10/+4
2021-09-02Implement #88581Jacob Pratt-0/+271
2021-09-01remove redundant / misplaced sentence from docsast-ral-4/+0
2021-09-02Auto merge of #83342 - Count-Count:win-console-incomplete-utf8, r=m-ou-sebors-1/+1
2021-09-01fix clippy lintsklensy-3/+3
2021-09-01`fmt::Formatter::pad`: don't call chars().count() more than one timeklensy-9/+14
2021-09-01Rollup merge of #88551 - inquisitivecrystal:unsafe_cell_raw_get, r=m-ou-seMara Bos-3/+2
2021-08-31Stabilize `Iterator::intersperse()`inquisitivecrystal-18/+12
2021-08-31Stabilize `UnsafeCell::raw_get()`inquisitivecrystal-3/+2
2021-08-31Rollup merge of #85017 - clarfonthey:carrying_widening, r=m-ou-seMara Bos-0/+202
2021-08-30use `unwrap_unchecked` where possibleibraheemdev-10/+4
2021-08-29Adding examples to docs of std::time moduleJoão M. Bezerra-5/+12
2021-08-28Auto merge of #87921 - kellerkindt:master, r=kennytmbors-0/+1044
2021-08-28Unimpl Shl{Assign} for signed Saturating types until the correct impl is clearMichael Watzko-59/+63
2021-08-28Fix mentions of wrapping operationsMichael Watzko-2/+2
2021-08-28Use wrapping shift for unsigned typesMichael Watzko-2/+2
2021-08-26Add carrying_add, borrowing_sub, widening_mul, carrying_mul methods to integersltdk-0/+202
2021-08-26Auto merge of #88066 - LeSeulArtichaut:patterns-cleanups, r=nagisabors-7/+4
2021-08-25Use if-let guards in the codebaseLéo Lanteri Thauvin-7/+4
2021-08-25Rollup merge of #88291 - mdsn:partition-in-blocks-safety, r=Mark-SimulacrumLéo Lanteri Thauvin-0/+26
2021-08-25Rollup merge of #88273 - jhpratt:update-iterator-docs, r=jyn514Léo Lanteri Thauvin-4/+4
2021-08-25Rollup merge of #88223 - scottmcm:fix-alias, r=yaahcLéo Lanteri Thauvin-15/+9
2021-08-25Rollup merge of #87944 - oconnor663:as_array_of_cells, r=scottmcmLéo Lanteri Thauvin-0/+20
2021-08-24Add SAFETY comments to core::slice::sort::partition_in_blocksMariano Casco-0/+26
2021-08-23Fix references to `ControlFlow` in docsJacob Pratt-4/+4
2021-08-23Auto merge of #83302 - camsteffen:write-piece-unchecked, r=dtolnaybors-4/+50
2021-08-23Rollup merge of #88230 - steffahn:a_an, r=oli-obkMara Bos-10/+10
2021-08-23add Cell::as_array_of_cells, similar to Cell::as_slice_of_cellsJack O'Connor-0/+20
2021-08-22Fix typos “an”→“a” and a few different ones that appeared in the sa...Frank Steffahn-5/+5
2021-08-22Fix more “a”/“an” typosFrank Steffahn-1/+1
2021-08-22Fix more “a”/“an” typosFrank Steffahn-1/+1
2021-08-22Fix typos “a”→“an”Frank Steffahn-3/+3
2021-08-22Auto merge of #88122 - Seppel3210:master, r=dtolnaybors-8/+10
2021-08-21Remove the `TryV2` aliasScott McMurray-15/+9
2021-08-20Add an example for deriving PartialOrd on enumsAriel Davis-0/+12
2021-08-19Simplify saturating_divMichael Watzko-8/+3
2021-08-19Simplify Div impl for Saturating by using saturating_divMichael Watzko-37/+31
2021-08-19Add saturating_div to unsigned integer typesMichael Watzko-0/+30
2021-08-19Add doctests to and fix saturating_div for signed integer typesMichael Watzko-9/+22