| Age | Commit message (Expand) | Author | Lines |
| 2017-07-22 | Rename {NonZero,Shared,Unique}::new_checked to new | Simon Sapin | -4/+4 |
| 2017-07-22 | Rename {NonZero,Shared,Unique}::new to new_unchecked | Simon Sapin | -6/+6 |
| 2017-07-22 | Add `new_checked(…) -> Option<Self>` to NonZero, Unique, and Shared. | Simon Sapin | -2/+12 |
| 2017-07-20 | std: Cut down #[inline] annotations where not necessary | Alex Crichton | -2/+2 |
| 2017-07-10 | Disable big-endian simd in swap_nonoverlapping_bytes | Josh Stone | -1/+4 |
| 2017-06-28 | Auto merge of #42819 - scottmcm:swap-nonoverlapping, r=sfackler | bors | -0/+84 |
| 2017-06-23 | Removed as many "```ignore" as possible. | kennytm | -6/+6 |
| 2017-06-21 | Reuse the mem::swap optimizations to speed up slice::rotate | Scott McMurray | -0/+84 |
| 2017-05-13 | Auto merge of #41920 - arielb1:inline-drop, r=eddyb | bors | -1/+0 |
| 2017-05-11 | remove the #[inline] attribute from drop_in_place | Ariel Ben-Yehuda | -1/+0 |
| 2017-05-10 | fix typo in Unique::empty doc | Ralf Jung | -1/+1 |
| 2017-05-04 | refactor NonZero, Shared, and Unique APIs | Alexis Beingessner | -44/+127 |
| 2017-04-29 | Update stage0 bootstrap compiler | Alex Crichton | -5/+0 |
| 2017-04-05 | Add tracking issue for offset_to | Amanieu d'Antras | -2/+2 |
| 2017-04-03 | Add ptr::offset_to | Amanieu d'Antras | -0/+76 |
| 2017-03-22 | Various fixes to wording consistency in the docs | Stjepan Glavina | -2/+2 |
| 2017-03-20 | Rollup merge of #40667 - DaseinPhaos:patch-4, r=GuillaumeGomez | Corey Farwell | -4/+4 |
| 2017-03-20 | Auto merge of #39628 - arielb1:shimmir, r=eddyb | bors | -0/+29 |
| 2017-03-20 | Fix typo in `ptr` doc | Luxko | -4/+4 |
| 2017-03-18 | translate drop glue using MIR | Ariel Ben-Yehuda | -0/+29 |
| 2017-03-17 | Minor fixups to fix tidy errors | Alex Crichton | -2/+1 |
| 2017-03-17 | Stabilize rc_raw feature, closes #37197 | Aaron Turon | -3/+11 |
| 2017-03-17 | Stabilize ptr_unaligned feature, closes #37955 | Aaron Turon | -6/+2 |
| 2017-03-09 | Reword the non-dropping of `src` for `ptr::write{,_unaligned}` | Tobias Bucher | -3/+5 |
| 2017-03-07 | Clarify handling of `src` in `ptr::write` | Tobias Bucher | -0/+4 |
| 2017-01-25 | std: Stabilize APIs for the 1.16.0 release | Alex Crichton | -4/+2 |
| 2017-01-07 | thanks @eddyb | Steve Klabnik | -1/+1 |
| 2017-01-07 | Improve safety warning on ptr::swap | Steve Klabnik | -1/+4 |
| 2016-12-12 | Implement RFC #1725 | Steven Fackler | -0/+83 |
| 2016-11-04 | core::ptr: Specify issue for ptr_wrapping_offset feature | Ulrik Sverdrup | -2/+2 |
| 2016-10-27 | core::ptr: Add .wrapping_offset() methods | Ulrik Sverdrup | -0/+80 |
| 2016-10-01 | std: Correct stability attributes for some implementations | Oliver Middleton | -1/+1 |
| 2016-09-15 | Add std::ptr::eq, for referential equality of &T references. | Simon Sapin | -0/+34 |
| 2016-08-25 | Auto merge of #35906 - jseyfried:local_prelude, r=eddyb | bors | -4/+1 |
| 2016-08-24 | Use `#[prelude_import]` in `libcore`. | Jeffrey Seyfried | -4/+1 |
| 2016-08-24 | Remove drop flags from structs and enums implementing Drop. | Eduard Burtescu | -15/+0 |
| 2016-08-21 | replace `println!` statements with `assert!`ions in `std::ptr` examples | Matthew Piziak | -4/+8 |
| 2016-07-17 | Implement traits for variadic function pointers | Vadim Petrochenkov | -2/+11 |
| 2016-04-17 | Improve as_mut ptr method example | Guillaume Gomez | -0/+3 |
| 2016-04-17 | Rollup merge of #32956 - GuillaumeGomez:ptr_examples, r=steveklabnik | Manish Goregaokar | -0/+52 |
| 2016-04-14 | Add examples for std::ptr module functions | ggomez | -0/+52 |
| 2016-04-11 | std: Stabilize APIs for the 1.9 release | Alex Crichton | -27/+37 |
| 2016-04-06 | avoid "==" in assert! when one of the values is a bool | Tshepang Lekhonkhobe | -2/+2 |
| 2016-03-28 | Add doc examples on pointer types | Guillaume Gomez | -0/+85 |
| 2016-03-20 | libcore: add Debug implementations to most missing types | Sean McArthur | -0/+2 |
| 2016-03-04 | End stdlib module summaries with a full stop. | Steve Klabnik | -1/+1 |
| 2016-03-01 | Rollup merge of #31965 - miqid:doc, r=steveklabnik | Steve Klabnik | -1/+1 |
| 2016-03-01 | Fix broken links for core primitives | Michael Huynh | -1/+1 |
| 2016-02-29 | std: Stabilize APIs for the 1.8 release | Alex Crichton | -1/+1 |
| 2016-02-18 | Implement read_volatile and write_volatile | Amanieu d'Antras | -0/+48 |