| Age | Commit message (Expand) | Author | Lines |
| 2021-02-15 | Use new pointer metadata API inside libcore instead of manual transmutes | Simon Sapin | -13/+39 |
| 2021-02-15 | Add `to_raw_parts` methods to `*const`, `*mut`, and `NonNull` | Simon Sapin | -1/+35 |
| 2021-02-15 | Add `ptr::from_raw_parts`, `ptr::from_raw_parts_mut`, and `NonNull::from_raw_... | Simon Sapin | -7/+57 |
| 2021-02-15 | Add `size_of`, `align_of`, and `layout` methods to `DynMetadata` | Simon Sapin | -8/+38 |
| 2021-02-15 | Parameterize `DynMetadata` over its `dyn SomeTrait` type | Simon Sapin | -6/+49 |
| 2021-02-15 | Add `ptr::Pointee` trait (for all types) and `ptr::metadata` function | Simon Sapin | -0/+83 |
| 2021-02-13 | Auto merge of #81238 - RalfJung:copy-intrinsics, r=m-ou-se | bors | -6/+1 |
| 2021-01-29 | rename raw_const/mut -> const/mut_addr_of, and stabilize them | Ralf Jung | -10/+8 |
| 2021-01-23 | Rollup merge of #79841 - fintelia:patch-6, r=kennytm | Jonas Schievink | -6/+13 |
| 2021-01-22 | More clear documentation for NonNull<T> | Jonathan Behrens | -6/+13 |
| 2021-01-21 | directly expose copy and copy_nonoverlapping intrinsics | Ralf Jung | -6/+1 |
| 2021-01-19 | Rollup merge of #81168 - soniasingla:doc/sonia, r=jonas-schievink | Guillaume Gomez | -2/+2 |
| 2021-01-18 | Fixes #81109 - Typo in pointer::wrapping_sub | soniasingla | -2/+2 |
| 2021-01-18 | remove some outdated comments regarding debug assertions | Ralf Jung | -3/+0 |
| 2021-01-06 | Make NonNull::as_ref (and friends) return refs with unbound lifetimes | Thom Chiovoloni | -6/+6 |
| 2021-01-02 | extend comment | Ralf Jung | -1/+2 |
| 2020-12-30 | implement ptr::write without dedicated intrinsic | Ralf Jung | -5/+11 |
| 2020-12-30 | Auto merge of #79684 - usbalbin:const_copy, r=oli-obk | bors | -6/+12 |
| 2020-12-26 | address review feedback | Ralf Jung | -30/+40 |
| 2020-12-26 | clarify wrapping ptr arithmetic docs | Ralf Jung | -72/+102 |
| 2020-12-26 | Added reference to tracking issue #80377 | Albin Hedman | -6/+6 |
| 2020-12-26 | Constify *const T::read[_unaligned] and *mut T::read[_unaligned] | Albin Hedman | -4/+8 |
| 2020-12-26 | Constify ptr::read and ptr::read_unaligned | Albin Hedman | -2/+4 |
| 2020-12-04 | Rename `AllocRef` to `Allocator` and `(de)alloc` to `(de)allocate` | Tim Diekmann | -2/+2 |
| 2020-11-30 | ptr links | Alexis Bourget | -19/+19 |
| 2020-11-30 | Intra doc links for the pointer primitive | Alexis Bourget | -19/+19 |
| 2020-11-21 | Rollup merge of #77844 - RalfJung:zst-box, r=nikomatsakis | Dylan DPC | -2/+6 |
| 2020-11-20 | reference NonNull::dangling | Ralf Jung | -5/+6 |
| 2020-10-29 | Improve wording of `core::ptr::drop_in_place` docs | Camelid | -3/+3 |
| 2020-10-26 | Auto merge of #75728 - nagisa:improve_align_offset_2, r=Mark-Simulacrum | bors | -3/+14 |
| 2020-10-16 | stop relying on feature(untagged_unions) in stdlib | Ralf Jung | -0/+10 |
| 2020-10-13 | explicitly talk about integer literals | Ralf Jung | -4/+4 |
| 2020-10-12 | clarify rules for ZST Boxes | Ralf Jung | -2/+5 |
| 2020-09-28 | Rename AllocErr to AllocError | Jacob Hughes | -1/+1 |
| 2020-09-09 | Rollup merge of #76497 - camelid:intra-doc-links-for-core-ptr, r=jyn514 | Tyler Mandry | -58/+23 |
| 2020-09-09 | Fix anchor links | Camelid | -10/+10 |
| 2020-09-08 | Fix broken link | Camelid | -4/+4 |
| 2020-09-08 | Use intra-doc links in `core::ptr` | Camelid | -56/+21 |
| 2020-09-08 | Remove a stray ignore-tidy-undocumented-unsafe | moonheart08 | -2/+0 |
| 2020-08-30 | Rollup merge of #75917 - poliorcetics:intra-doc-core-nonnull, r=jyn514 | Dylan DPC | -20/+16 |
| 2020-08-26 | Fix potential UB in align_offset docs | Elichai Turkel | -2/+2 |
| 2020-08-25 | Move to intra doc links for core::ptr::non_null | Alexis Bourget | -20/+16 |
| 2020-08-23 | bump stable version | Ralf Jung | -2/+2 |
| 2020-08-22 | fix dead links to wrapping_offset_from | Ralf Jung | -14/+4 |
| 2020-08-22 | remove feature gate from tests | Ralf Jung | -8/+0 |
| 2020-08-22 | stabilize ptr_offset_from | Ralf Jung | -2/+2 |
| 2020-08-22 | remove deprecated wrapping_offset_from | Ralf Jung | -103/+0 |
| 2020-08-22 | offset_from: also document same-provenance requirement | Ralf Jung | -0/+44 |
| 2020-08-20 | Optimise align_offset for stride=1 further | Simonas Kazlauskas | -3/+14 |
| 2020-08-19 | Auto merge of #75600 - nagisa:improve_align_offset, r=KodrAus | bors | -28/+47 |