Skip to content

Commit

Permalink
Rollup merge of rust-lang#129087 - slanterns:option_get_or_insert_def…
Browse files Browse the repository at this point in the history
…ault, r=dtolnay

Stabilize `option_get_or_insert_default`

Closes: rust-lang#82901.

`@rustbot` label: +T-libs-api

r? libs-api
  • Loading branch information
matthiaskrgr authored Sep 27, 2024
2 parents edc72ca + 7921401 commit 7ddd566
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/option.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1639,8 +1639,6 @@ impl<T> Option<T> {
/// # Examples
///
/// ```
/// #![feature(option_get_or_insert_default)]
///
/// let mut x = None;
///
/// {
Expand All @@ -1653,7 +1651,7 @@ impl<T> Option<T> {
/// assert_eq!(x, Some(7));
/// ```
#[inline]
#[unstable(feature = "option_get_or_insert_default", issue = "82901")]
#[stable(feature = "option_get_or_insert_default", since = "CURRENT_RUSTC_VERSION")]
pub fn get_or_insert_default(&mut self) -> &mut T
where
T: Default,
Expand Down

0 comments on commit 7ddd566

Please sign in to comment.