| Age | Commit message (Expand) | Author | Lines |
| 2014-05-07 | core: Add unwrap()/unwrap_err() methods to Result | Alex Crichton | -0/+312 |
| 2014-05-07 | core: Inherit the result module | Alex Crichton | -783/+0 |
| 2014-05-02 | Replace most ~exprs with 'box'. #11779 | Brian Anderson | -2/+2 |
| 2014-04-23 | Fix other bugs with new closure borrowing | Alex Crichton | -4/+4 |
| 2014-04-21 | Fix misspellings in comments. | Joseph Crail | -2/+2 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -25/+30 |
| 2014-04-17 | Add #[deriving(Hash)] to Result. | Richard Diamond | -1/+1 |
| 2014-04-16 | doc: Address review feedback | Brian Anderson | -17/+14 |
| 2014-04-16 | std: Improve docs for mod 'result' | Brian Anderson | -5/+328 |
| 2014-04-13 | Make Result::{unwrap, unwrap_err} require Show | Steven Fackler | -14/+19 |
| 2014-04-12 | libstd: Add unwrap_or and unwrap_or_handle to Result | Kevin Butler | -0/+61 |
| 2014-03-30 | Rename `from_iterator` to `from_iter` for consistency. | Brian Anderson | -1/+1 |
| 2014-03-25 | Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v... | Marvin Löbel | -1/+1 |
| 2014-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -1/+1 |
| 2014-02-23 | Remove all ToStr impls, add Show impls | Alex Crichton | -18/+1 |
| 2014-02-08 | std::fmt: convert the formatting traits to a proper self. | Huon Wilson | -2/+2 |
| 2014-02-03 | std: Remove io::io_error | Alex Crichton | -1/+1 |
| 2014-02-02 | std: rename fmt::Default to `Show`. | Huon Wilson | -1/+1 |
| 2014-01-31 | Fix minor doc typos | Virgile Andreani | -2/+2 |
| 2014-01-29 | Flag Result as #[must_use] and deal with fallout. | Alex Crichton | -0/+1 |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -2/+2 |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -2/+1 |
| 2013-12-29 | auto merge of #11134 : lucab/rust/lucab/libstd-doc, r=cmr | bors | -1/+1 |
| 2013-12-27 | std: uniform modules titles for doc | Luca Bruno | -1/+1 |
| 2013-12-26 | std: result::collect to take an iterator, add option::collect | Erick Tryzelaar | -28/+32 |
| 2013-12-14 | Remove {As,Into,To}{Option,Either,Result} traits. | Chris Morgan | -132/+0 |
| 2013-12-06 | Made Results API more composable | Marvin Löbel | -124/+43 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -2/+2 |
| 2013-11-26 | test: Remove non-procedure uses of `do` from compiletest, libstd tests, | Patrick Walton | -6/+6 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -10/+10 |
| 2013-11-01 | Fixed unused import warning in tests | Marvin Löbel | -1/+1 |
| 2013-11-01 | Removed legacy implementations | Marvin Löbel | -60/+0 |
| 2013-11-01 | Cleaned up the option and result module in more detail | Marvin Löbel | -21/+12 |
| 2013-11-01 | Reordered the methods in std::Option and std::Result | Marvin Löbel | -169/+154 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -6/+6 |
| 2013-10-18 | Made `std::task::TaskBuilder::future_result()` easier to use | Marvin Löbel | -1/+0 |
| 2013-10-16 | Added Result implementations for ToStr and fmt::Default | Marvin Löbel | -6/+47 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -6/+8 |
| 2013-09-22 | std::result: Remove function `map_opt` | blake2-ppc | -13/+0 |
| 2013-09-12 | std: Rename {Option,Result}::chain{,_err}* to {and_then,or_else} | Erick Tryzelaar | -10/+55 |
| 2013-09-12 | std: Add ToEither/IntoEither/AsEither | Erick Tryzelaar | -21/+58 |
| 2013-09-12 | std: Add ToResult/IntoResult/AsResult | Erick Tryzelaar | -0/+68 |
| 2013-09-12 | std: Add ToOption/IntoOption/AsOption | Erick Tryzelaar | -0/+60 |
| 2013-09-09 | rename `std::iterator` to `std::iter` | Daniel Micay | -2/+2 |
| 2013-08-18 | auto merge of #8551 : huonw/rust/speling, r=alexcrichton | bors | -1/+1 |
| 2013-08-16 | doc: correct spelling in documentation. | Huon Wilson | -1/+1 |
| 2013-08-15 | std: Replace map_vec, map_vec2, iter_vec2 in std::result | blake2-ppc | -55/+84 |
| 2013-08-10 | Mass rename of .consume{,_iter}() to .move_iter() | Erick Tryzelaar | -2/+2 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -4/+4 |
| 2013-08-07 | std: add result.map_move, result.map_err_move | Erick Tryzelaar | -4/+52 |