Added tracking issue to unstable attribute

This commit is contained in:
Chase Wilson 2021-08-05 12:44:22 -05:00
parent 9d8081e8b6
commit ab2c5902ca
No known key found for this signature in database
GPG Key ID: 190140C6730EB7E1

View File

@ -1417,7 +1417,7 @@ impl<T, U> Option<(T, U)> {
/// assert_eq!(y.unzip(), (None, None));
/// ```
#[inline]
#[unstable(feature = "unzip_option", issue = "none", reason = "recently added")]
#[unstable(feature = "unzip_option", issue = "87800", reason = "recently added")]
pub const fn unzip(self) -> (Option<T>, Option<U>) {
match self {
Some((a, b)) => (Some(a), Some(b)),