Skip to content

Commit 9adf702

Browse files
authored
Rollup merge of rust-lang#126384 - RalfJung:is_none_or, r=workingjubilee
add tracking issue for is_none_or This was forgotten in rust-lang#126328. Cc rust-lang#126383
2 parents 02cb1e9 + 3ef894f commit 9adf702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/option.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ impl<T> Option<T> {
672672
/// ```
673673
#[must_use]
674674
#[inline]
675-
#[unstable(feature = "is_none_or", issue = "none")]
675+
#[unstable(feature = "is_none_or", issue = "126383")]
676676
pub fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool {
677677
match self {
678678
None => true,

0 commit comments

Comments
 (0)