| Age | Commit message (Expand) | Author | Lines |
| 2016-08-24 | Use `#[prelude_import]` in `libcore`. | Jeffrey Seyfried | -6/+1 |
| 2016-08-24 | Rollup merge of #35876 - matthew-piziak:sub-examples, r=GuillaumeGomez | Jonathan Turner | -19/+43 |
| 2016-08-23 | add more-evocative examples for `Shl` and `Shr` | Matthew Piziak | -18/+76 |
| 2016-08-23 | replace `Div` example with something more evocative of division | Matthew Piziak | -9/+52 |
| 2016-08-23 | improve documentation for `Fn*` traits | Matthew Piziak | -0/+165 |
| 2016-08-22 | Rollup merge of #35864 - matthew-piziak:index-example, r=GuillaumeGomez | Jonathan Turner | -13/+29 |
| 2016-08-22 | Rollup merge of #35861 - matthew-piziak:rem-example, r=GuillaumeGomez | Jonathan Turner | -11/+19 |
| 2016-08-22 | Rollup merge of #35860 - matthew-piziak:mul-example, r=GuillaumeGomez | Jonathan Turner | -10/+47 |
| 2016-08-22 | Rollup merge of #35809 - matthew-piziak:bitwise-and-example, r=GuillaumeGomez | Jonathan Turner | -12/+27 |
| 2016-08-22 | more evocative examples for `Sub` and `SubAssign` | Matthew Piziak | -19/+43 |
| 2016-08-22 | replace `BitAnd` example with something more evocative of bitwise AND | Matthew Piziak | -12/+27 |
| 2016-08-22 | replace `Mul` example with something more evocative of multiplication | Matthew Piziak | -10/+47 |
| 2016-08-21 | Auto merge of #35777 - nrc:carrier3, r=@nikomatsakis | bors | -0/+72 |
| 2016-08-20 | replace `Index` example with something more evocative of indexing | Matthew Piziak | -13/+29 |
| 2016-08-20 | replace `Rem` example with something more evocative | Matthew Piziak | -11/+19 |
| 2016-08-20 | show how iterating over `RangeTo` and `RangeToInclusive` fails | Matthew Piziak | -12/+43 |
| 2016-08-20 | Rollup merge of #35830 - matthew-piziak:not-example, r=steveklabnik | Jonathan Turner | -11/+22 |
| 2016-08-20 | Rollup merge of #35827 - matthew-piziak:neg-example, r=steveklabnik | Jonathan Turner | -11/+16 |
| 2016-08-20 | Rollup merge of #35806 - matthew-piziak:addassign-example, r=steveklabnik | Jonathan Turner | -10/+21 |
| 2016-08-20 | Rollup merge of #35800 - matthew-piziak:mul-div-examples, r=steveklabnik | Jonathan Turner | -0/+62 |
| 2016-08-20 | Rollup merge of #35710 - matthew-piziak:explicit-drop, r=steveklabnik | Jonathan Turner | -0/+7 |
| 2016-08-20 | Rollup merge of #35709 - matthew-piziak:add-trait-example, r=GuillaumeGomez | Jonathan Turner | -11/+23 |
| 2016-08-20 | Rollup merge of #35701 - matthew-piziak:rangefull-example-error, r=steveklabnik | Jonathan Turner | -7/+20 |
| 2016-08-19 | replace `Neg` example with something more evocative of negation | Matthew Piziak | -11/+22 |
| 2016-08-19 | replace `Not` example with something more evocative | Matthew Piziak | -11/+16 |
| 2016-08-19 | Remove the Option and bool impls for carrier and add a dummy impl | Nick Cameron | -60/+7 |
| 2016-08-18 | replace `AddAssign` example with something more evocative of addition | Matthew Piziak | -10/+21 |
| 2016-08-18 | note that calling drop() explicitly is a compiler error | Matthew Piziak | -0/+7 |
| 2016-08-18 | split example into three sections with explanation | Matthew Piziak | -3/+14 |
| 2016-08-18 | demonstrate `RHS != Self` use cases for `Mul` and `Div` | Matthew Piziak | -0/+62 |
| 2016-08-18 | Use a Carrier trait with the `?` operator | Nick Cameron | -0/+125 |
| 2016-08-17 | replace Add example with something more evocative of addition | Matthew Piziak | -11/+23 |
| 2016-08-16 | RangeFull for-loop iteration fails because of IntoIterator | Matthew Piziak | -1/+1 |
| 2016-08-15 | explicitly show how iterating over `..` fails | Matthew Piziak | -8/+10 |
| 2016-08-15 | expound on limitations of Rust's trait-based operator overloading | Matthew Piziak | -3/+8 |
| 2016-07-08 | Stabilize `FnOnce::Output` + Fix rebase | petrochenkov | -1/+1 |
| 2016-07-03 | std: Stabilize APIs for the 1.11.0 release | Alex Crichton | -23/+1 |
| 2016-06-19 | doc: std::ops md formatting fix | Daan Sprenkels | -0/+1 |
| 2016-06-09 | make RangeInclusive Hash and !Copy | Alex Burka | -1/+1 |
| 2016-06-09 | derive Hash for ranges | Alex Burka | -5/+5 |
| 2016-06-05 | core: mark relevant functions with #[rustc_inherit_overflow_checks]. | Eduard Burtescu | -0/+11 |
| 2016-04-13 | Add a note about overflowing in the `RangeFrom` iterator | Tobias Bucher | -0/+5 |
| 2016-03-24 | Add core::ops::Range*::contains() as per rust-lang/rust#32311 | NODA, Kai | -6/+208 |
| 2016-03-20 | Update snapshots to 2016-03-18 (235d774). | Eduard Burtescu | -4/+0 |
| 2016-03-07 | Auto merge of #32051 - steveklabnik:gh9447, r=bluss | bors | -1/+1 |
| 2016-03-06 | Auto merge of #30884 - durka:inclusive-ranges, r=aturon | bors | -5/+92 |
| 2016-03-04 | add more unstable annotations | Alex Burka | -0/+15 |
| 2016-03-04 | End stdlib module summaries with a full stop. | Steve Klabnik | -1/+1 |
| 2016-02-29 | std: Stabilize APIs for the 1.8 release | Alex Crichton | -50/+30 |
| 2016-02-27 | note work still to be done | Alex Burka | -5/+7 |