From 3ef894f8bc5d8825b1610867e85f54d97b4d60c8 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Thu, 13 Jun 2024 10:09:51 +0200 Subject: [PATCH] add tracking issue for is_none_or --- core/src/option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/option.rs b/core/src/option.rs index 403fe4ff04c53..4d6ba2fa3b38c 100644 --- a/core/src/option.rs +++ b/core/src/option.rs @@ -672,7 +672,7 @@ impl Option { /// ``` #[must_use] #[inline] - #[unstable(feature = "is_none_or", issue = "none")] + #[unstable(feature = "is_none_or", issue = "126383")] pub fn is_none_or(self, f: impl FnOnce(T) -> bool) -> bool { match self { None => true,