1
Fork 0

Bump version placeholders to release

This commit is contained in:
Mark Rousskov 2022-10-31 10:43:15 -04:00
parent 7eef946fc0
commit 455a7bc685
13 changed files with 51 additions and 51 deletions

View file

@ -1720,7 +1720,7 @@ impl<T, U> Option<(T, U)> {
/// assert_eq!(y.unzip(), (None, None));
/// ```
#[inline]
#[stable(feature = "unzip_option", since = "CURRENT_RUSTC_VERSION")]
#[stable(feature = "unzip_option", since = "1.66.0")]
#[rustc_const_unstable(feature = "const_option", issue = "67441")]
pub const fn unzip(self) -> (Option<T>, Option<U>)
where