| Commit message (Expand) | Author | Age | Files | Lines |
* | replace version placeholders | Pietro Albini | 2023-04-28 | 1 | -2/+2 |
* | core is now compilable | Deadbeef | 2023-04-16 | 1 | -34/+6 |
* | rm const traits in libcore | Deadbeef | 2023-04-16 | 1 | -35/+21 |
* | Stabilize is_some_and | Jonas Platte | 2023-04-06 | 1 | -5/+2 |
* | Auto merge of #108095 - soc:drop-contains, r=Amanieu | bors | 2023-03-28 | 1 | -62/+0 |
|\ |
|
| * | Drop unstable `Option::contains`, `Result::contains`, `Result::contains_err` | soc | 2023-02-15 | 1 | -62/+0 |
* | | Add #[inline] to as_deref | Ben Kimock | 2023-03-19 | 1 | -0/+2 |
* | | "Basic usage" is redundant for there is just one example | Tshepang Mbambo | 2023-02-16 | 1 | -42/+0 |
|/ |
|
* | docs: update fragment for Result impls | Michael Howell | 2023-02-03 | 1 | -3/+3 |
* | Improve wording for Option and Result | Chris AtLee | 2022-12-13 | 1 | -4/+3 |
* | Auto merge of #98354 - camsteffen:is-some-and-by-value, r=m-ou-se | bors | 2022-10-02 | 1 | -11/+17 |
|\ |
|
| * | Change feature name to is_some_and | Cameron Steffen | 2022-10-01 | 1 | -4/+4 |
| * | Change is_some_and to take by value | Cameron Steffen | 2022-10-01 | 1 | -7/+13 |
* | | Update result.rs | Marijn Schouten | 2022-09-28 | 1 | -3/+0 |
|/ |
|
* | Constify Residual behind const_try | onestacked | 2022-09-23 | 1 | -1/+2 |
* | Rollup merge of #100604 - dtolnay:okorerr, r=m-ou-se | Yuki Okushi | 2022-08-26 | 1 | -34/+0 |
|\ |
|
| * | Remove unstable Result::into_ok_or_err | David Tolnay | 2022-08-17 | 1 | -34/+0 |
* | | Add a warning about `Option/Result::and()` being eagerly evaluated | Chayim Refael Friedman | 2022-08-23 | 1 | -0/+5 |
|/ |
|
* | add same warning to Result::expect as Result::unwrap | Nathan Stocks | 2022-07-21 | 1 | -0/+9 |
* | Fix links in std/core documentation | Guillaume Gomez | 2022-07-05 | 1 | -3/+3 |
* | Rollup merge of #96033 - yaahc:expect-elaboration, r=scottmcm | Matthias Krüger | 2022-05-26 | 1 | -0/+20 |
|\ |
|
| * | update option and result references to expect message docs | Jane Lusby | 2022-05-25 | 1 | -3/+9 |
| * | This is a pretty good start if you ask me | Jane Lusby | 2022-05-06 | 1 | -66/+6 |
| * | spicy | Jane Losare-Lusby | 2022-04-30 | 1 | -25/+43 |
| * | Update library/core/src/result.rs | Jane Lusby | 2022-04-18 | 1 | -1/+1 |
| * | Update library/core/src/result.rs | Jane Lusby | 2022-04-18 | 1 | -1/+1 |
| * | update docs for option to crossreference to the result docs | Jane Lusby | 2022-04-15 | 1 | -7/+7 |
| * | add should_panic annotations | Jane Lusby | 2022-04-14 | 1 | -3/+3 |
| * | add necessary text attribute to code block of panic output | Jane Lusby | 2022-04-14 | 1 | -2/+2 |
| * | Add section on common message styles for Result::expect | Jane Lusby | 2022-04-13 | 1 | -0/+56 |
* | | Add `do yeet` expressions to allow experimentation in nightly | Scott McMurray | 2022-04-30 | 1 | -0/+8 |
|/ |
|
* | trivial cfg(bootstrap) changes | Pietro Albini | 2022-04-05 | 1 | -13/+12 |
* | Adjust feature names that disagree on const stabilization version | David Tolnay | 2022-03-31 | 1 | -3/+3 |
* | Rename `~const Drop` to `~const Destruct` | Deadbeef | 2022-03-21 | 1 | -12/+14 |
* | Rollup merge of #94765 - m-ou-se:is-some-and, r=Dylan-DPC | Dylan DPC | 2022-03-11 | 1 | -10/+10 |
|\ |
|
| * | Rename is_{some,ok,err}_with to is_{some,ok,err}_and. | Mara Bos | 2022-03-09 | 1 | -10/+10 |
* | | Use implicit capture syntax in format_args | T-O-R-U-S | 2022-03-10 | 1 | -12/+12 |
* | | Rollup merge of #91804 - woppopo:const_clone, r=oli-obk | Matthias Krüger | 2022-03-09 | 1 | -1/+6 |
|\ \
| |/
|/| |
|
| * | Make some `Clone` impls `const` | woppopo | 2021-12-12 | 1 | -1/+6 |
* | | Rollup merge of #92385 - clarfonthey:const_option, r=fee1-dead | Matthias Krüger | 2022-03-08 | 1 | -10/+45 |
|\ \ |
|
| * | | Add Result::{ok, err, and, or, unwrap_or} as const | ltdk | 2022-01-29 | 1 | -10/+45 |
* | | | Add note on Windows path behaviour | cyqsimon | 2022-02-12 | 1 | -0/+1 |
* | | | `Result::and_then`: show type conversion | cyqsimon | 2022-02-12 | 1 | -6/+5 |
* | | | `Result::and_then`: improve basic example | cyqsimon | 2022-02-12 | 1 | -4/+6 |
* | | | Add negative example for `Result::and_then` | cyqsimon | 2022-02-11 | 1 | -2/+6 |
* | | | More practical examples for `Result::and_then` | cyqsimon | 2022-02-10 | 1 | -7/+13 |
* | | | Change `ResultShunt` to be generic over `Try` | Scott McMurray | 2022-02-07 | 1 | -1/+1 |
|/ / |
|
* | | Fix is_some_with tests. | Mara Bos | 2022-01-19 | 1 | -5/+8 |
* | | Improve is_err_with example. | Mara Bos | 2022-01-18 | 1 | -6/+8 |
* | | Add is_some_with tracking issue number. | Mara Bos | 2022-01-18 | 1 | -2/+2 |