| Age | Commit message (Expand) | Author | Lines |
| 2018-01-05 | Rollup merge of #47030 - ollie27:stab, r=alexcrichton | kennytm | -10/+25 |
| 2018-01-05 | Make UnsafeCell::into_inner safe | varkor | -12/+7 |
| 2018-01-04 | Bump to 1.25.0 | Alex Crichton | -1/+0 |
| 2018-01-04 | Remove min from RangeFrom | varkor | -12/+0 |
| 2018-01-04 | Make examples equivalent | aheart | -0/+1 |
| 2018-01-04 | Add tests for specialised Range iter methods | varkor | -0/+32 |
| 2018-01-04 | Remove RangeInclusive::sum | varkor | -18/+1 |
| 2018-01-04 | Fix potential overflow in TrustedRandomAccess impl for slice::{Chunks,ChunksMut} | Sebastian Dröge | -2/+8 |
| 2018-01-04 | Add max and sum specialisations for Range | varkor | -1/+25 |
| 2018-01-04 | Add min specialisation for RangeFrom and last for RangeInclusive | varkor | -0/+10 |
| 2018-01-04 | Add min and max specialisations for RangeInclusive | varkor | -0/+10 |
| 2018-01-03 | Fix compilation of TrustedRandomAccess impl for slice::Chunks | Sebastian Dröge | -2/+2 |
| 2018-01-03 | Add unit test for zipping slice::{Chunks, ChunksMut, Windows} iterators | Sebastian Dröge | -0/+39 |
| 2018-01-03 | Implement TrustedRandomAccess for slice::{Chunks, ChunksMut, Windows} | Sebastian Dröge | -0/+28 |
| 2018-01-03 | Rollup merge of #47118 - hdhoang:patch-2, r=BurntSushi | kennytm | -2/+2 |
| 2018-01-02 | Use assert!(chunk_size != 0) instead of > 0 for usize value | Sebastian Dröge | -1/+1 |
| 2018-01-02 | Consistently use chunk_size as the field name for Chunks and ChunksMut | Sebastian Dröge | -15/+15 |
| 2018-01-01 | Auto merge of #46735 - Manishearth:memchr-find, r=burntsushi | bors | -84/+519 |
| 2018-01-01 | handle overflow/underflow in index offsets | Manish Goregaokar | -10/+15 |
| 2018-01-01 | memchr: fix variable name in docstrings | Hoàng Đức Hiếu | -2/+2 |
| 2018-01-01 | Auto merge of #47064 - kennytm:force-trailing-newlines, r=estebank | bors | -1/+1 |
| 2017-12-31 | Auto merge of #46713 - Manishearth:memchr, r=bluss | bors | -1/+260 |
| 2017-12-31 | Use memchr for [i8]::contains as well | Manish Goregaokar | -0/+8 |
| 2017-12-30 | Optimise min/max | varkor | -4/+4 |
| 2017-12-30 | Add trailing newlines to files which have no trailing newlines. | kennytm | -1/+1 |
| 2017-12-27 | Correct a few stability attributes | Oliver Middleton | -10/+25 |
| 2017-12-26 | Rollup merge of #46986 - nvzqz:basic-usage, r=steveklabnik | kennytm | -0/+8 |
| 2017-12-26 | Rollup merge of #46933 - clarcharr:float_docs, r=steveklabnik | kennytm | -2/+12 |
| 2017-12-25 | Pass tidy for tests | Manish Goregaokar | -2/+14 |
| 2017-12-24 | Deprecate [T]::rotate in favor of [T]::rotate_{left,right}. | Corey Farwell | -5/+33 |
| 2017-12-25 | Auto merge of #46914 - mikeyhew:raw_pointer_self, r=arielb1 | bors | -2/+2 |
| 2017-12-24 | Add "Basic Usage" to int min_value, max_value docs | Nikolai Vazquez | -0/+8 |
| 2017-12-23 | Move Bits constraints to RawFloat::RawBits | Clar Charr | -5/+20 |
| 2017-12-23 | fix doctests in libcore | Michael Hewson | -2/+2 |
| 2017-12-22 | Expose float from_bits and to_bits in libcore. | Clar Charr | -47/+51 |
| 2017-12-22 | doc: improve None condition doc for `checked_div` and `checked_rem` | Trevor Spiteri | -4/+4 |
| 2017-12-21 | Make core::f32/f64 docs match std. | Clar Charr | -2/+12 |
| 2017-12-22 | Rollup merge of #46898 - tspiteri:int-overflow-not-underflow, r=steveklabnik | kennytm | -17/+13 |
| 2017-12-22 | Rollup merge of #46820 - nodakai:simplify-int-impl, r=alexcrichton | kennytm | -151/+52 |
| 2017-12-21 | docs: do not call integer overflows as underflows | Trevor Spiteri | -17/+13 |
| 2017-12-20 | Rollup merge of #46870 - ffflorian:fix/slice/typo, r=rkruppe | kennytm | -1/+1 |
| 2017-12-20 | Rollup merge of #46831 - Diggsey:float-debug-fmt, r=dtolnay | kennytm | -8/+13 |
| 2017-12-20 | Rollup merge of #46517 - notriddle:patch-2, r=BurntSushi | kennytm | -4/+2 |
| 2017-12-20 | docs(slice): Clarify half-open interval | Florian Keller | -1/+1 |
| 2017-12-20 | Auto merge of #46233 - SimonSapin:fmt-debuglist-flags, r=sfackler | bors | -43/+134 |
| 2017-12-19 | Auto merge of #46749 - SimonSapin:exorcism, r=nikomatsakis | bors | -23/+12 |
| 2017-12-19 | Always print floats with a decimal point with the Debug formatter | Diggory Blake | -8/+13 |
| 2017-12-18 | Add stresstests for shared bytes for pattern API | Manish Goregaokar | -1/+153 |
| 2017-12-19 | libcore/num/mod.rs: simplify the int_impl! macro. | NODA, Kai | -151/+52 |
| 2017-12-18 | Add simple search test for pattern API | Manish Goregaokar | -0/+24 |