Skip to content

Commit 3ef894f

Browse files
committed
add tracking issue for is_none_or
1 parent 9921cd2 commit 3ef894f

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)