| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2016-02-14 | Remove incorrect documentation | Steve Klabnik | -2/+1 |
| 2016-02-06 | Document that Unique<T> and Shared<T> are non-null | Ulrik Sverdrup | -2/+10 |
| 2015-12-21 | Register new snapshots | Alex Crichton | -22/+4 |
| 2015-11-18 | Add missing annotations and some tests | Vadim Petrochenkov | -0/+1 |
| 2015-11-06 | Remove stability annotations from trait impl items | Vadim Petrochenkov | -2/+0 |
| 2015-10-31 | Auto merge of #29480 - apasel422:coerce-unique, r=alexcrichton | bors | -0/+4 |
| 2015-10-30 | Implement `CoerceUnsized` for `Unique` | Andrew Paseltiner | -0/+4 |
| 2015-10-30 | expose drop_in_place as ptr::drop_in_place | Alexis Beingessner | -0/+2 |
| 2015-10-25 | Switch to 'const unsafe fn' ordering (rust-lang/rust#29107) | John Hodge | -1/+1 |
| 2015-10-21 | Auto merge of #29192 - phil-opp:unsafe-const-fns, r=alexcrichton | bors | -4/+20 |
| 2015-10-20 | Make Unique::new const function | Philipp Oppermann | -4/+20 |
| 2015-10-20 | Point core::ptr::Shared to tracking issue #27730. | Huon Wilson | -9/+9 |
| 2015-10-16 | Add `Shared` pointer and have `{Arc, Rc}` use it | Andrew Paseltiner | -2/+67 |