Skip to content

Remove unnecessary abstractions from option and result impls #81747

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions library/core/src/option.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,10 @@ impl<T: Copy> Option<&T> {
/// ```
#[stable(feature = "copied", since = "1.35.0")]
pub fn copied(self) -> Option<T> {
self.map(|&t| t)
match self {
None => None,
Some(t) => Some(*t),
}
}
}

Expand All @@ -1079,7 +1082,10 @@ impl<T: Copy> Option<&mut T> {
/// ```
#[stable(feature = "copied", since = "1.35.0")]
pub fn copied(self) -> Option<T> {
self.map(|&mut t| t)
match self {
None => None,
Some(t) => Some(*t),
}
}
}

Expand All @@ -1098,7 +1104,10 @@ impl<T: Clone> Option<&T> {
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
pub fn cloned(self) -> Option<T> {
self.map(|t| t.clone())
match self {
None => None,
Some(t) => Some(t.clone()),
}
}
}

Expand All @@ -1117,7 +1126,10 @@ impl<T: Clone> Option<&mut T> {
/// ```
#[stable(since = "1.26.0", feature = "option_ref_mut_cloned")]
pub fn cloned(self) -> Option<T> {
self.map(|t| t.clone())
match self {
None => None,
Some(t) => Some(t.clone()),
}
}
}

Expand Down Expand Up @@ -1259,7 +1271,10 @@ impl<T: Deref> Option<T> {
/// ```
#[stable(feature = "option_deref", since = "1.40.0")]
pub fn as_deref(&self) -> Option<&T::Target> {
self.as_ref().map(|t| t.deref())
match self {
None => None,
Some(t) => Some(t.deref()),
}
}
}

Expand All @@ -1280,7 +1295,10 @@ impl<T: DerefMut> Option<T> {
/// ```
#[stable(feature = "option_deref", since = "1.40.0")]
pub fn as_deref_mut(&mut self) -> Option<&mut T::Target> {
self.as_mut().map(|t| t.deref_mut())
match self {
None => None,
Some(t) => Some(t.deref_mut()),
}
}
}

Expand Down
39 changes: 30 additions & 9 deletions library/core/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@

use crate::iter::{self, FromIterator, FusedIterator, TrustedLen};
use crate::ops::{self, Deref, DerefMut};
use crate::{convert, fmt, hint};
use crate::{fmt, hint};

/// `Result` is a type that represents either success ([`Ok`]) or failure ([`Err`]).
///
Expand Down Expand Up @@ -298,7 +298,7 @@ impl<T, E> Result<T, E> {
#[inline]
#[stable(feature = "rust1", since = "1.0.0")]
pub const fn is_err(&self) -> bool {
!self.is_ok()
matches!(*self, Err(_))
}

/// Returns `true` if the result is an [`Ok`] value containing the given value.
Expand Down Expand Up @@ -907,7 +907,10 @@ impl<T: Copy, E> Result<&T, E> {
/// ```
#[unstable(feature = "result_copied", reason = "newly added", issue = "63168")]
pub fn copied(self) -> Result<T, E> {
self.map(|&t| t)
match self {
Ok(x) => Ok(*x),
Err(e) => Err(e),
}
}
}

Expand All @@ -927,7 +930,10 @@ impl<T: Copy, E> Result<&mut T, E> {
/// ```
#[unstable(feature = "result_copied", reason = "newly added", issue = "63168")]
pub fn copied(self) -> Result<T, E> {
self.map(|&mut t| t)
match self {
Ok(x) => Ok(*x),
Err(e) => Err(e),
}
}
}

Expand All @@ -947,7 +953,10 @@ impl<T: Clone, E> Result<&T, E> {
/// ```
#[unstable(feature = "result_cloned", reason = "newly added", issue = "63168")]
pub fn cloned(self) -> Result<T, E> {
self.map(|t| t.clone())
match self {
Ok(x) => Ok(x.clone()),
Err(e) => Err(e),
}
}
}

Expand All @@ -967,7 +976,10 @@ impl<T: Clone, E> Result<&mut T, E> {
/// ```
#[unstable(feature = "result_cloned", reason = "newly added", issue = "63168")]
pub fn cloned(self) -> Result<T, E> {
self.map(|t| t.clone())
match self {
Ok(x) => Ok(x.clone()),
Err(e) => Err(e),
}
}
}

Expand Down Expand Up @@ -1186,7 +1198,10 @@ impl<T: Deref, E> Result<T, E> {
/// ```
#[stable(feature = "inner_deref", since = "1.47.0")]
pub fn as_deref(&self) -> Result<&T::Target, &E> {
self.as_ref().map(|t| t.deref())
match self {
Ok(x) => Ok(x.deref()),
Err(e) => Err(e),
}
}
}

Expand All @@ -1211,7 +1226,10 @@ impl<T: DerefMut, E> Result<T, E> {
/// ```
#[stable(feature = "inner_deref", since = "1.47.0")]
pub fn as_deref_mut(&mut self) -> Result<&mut T::Target, &mut E> {
self.as_mut().map(|t| t.deref_mut())
match self {
Ok(x) => Ok(x.deref_mut()),
Err(e) => Err(e),
}
}
}

Expand Down Expand Up @@ -1273,7 +1291,10 @@ impl<T, E> Result<Result<T, E>, E> {
#[inline]
#[unstable(feature = "result_flattening", issue = "70142")]
pub fn flatten(self) -> Result<T, E> {
self.and_then(convert::identity)
match self {
Ok(x) => x,
Err(e) => Err(e),
}
}
}

Expand Down