-
Notifications
You must be signed in to change notification settings - Fork 13.6k
Closed as not planned
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.
Description
Feature gate: #![feature(const_closure_impls)]
This is a tracking issue for const
forwarding impls for Fn
family traits.
Public API
// core::ops
impl<A, F: ?Sized> const Fn<A> for &F
where
F: ~const Fn<A>,
impl<A, F: ?Sized> const FnMut<A> for &F
where
F: ~const Fn<A>,
impl<A, F: ?Sized> const FnOnce<A> for &F
where
F: ~const Fn<A>,
impl<A, F: ?Sized> const FnMut<A> for &mut F
where
F: ~const FnMut<A>,
impl<A, F: ?Sized> const FnOnce<A> for &mut F
where
F: ~const FnMut<A>,
Steps / History
- Implementation: Make it possible to have
const
impl
s forIterator
#92433 - Final comment period (FCP)
- Stabilization PR
Unresolved Questions
- None yet.
Metadata
Metadata
Assignees
Labels
C-tracking-issueCategory: An issue tracking the progress of sth. like the implementation of an RFCCategory: An issue tracking the progress of sth. like the implementation of an RFCT-libs-apiRelevant to the library API team, which will review and decide on the PR/issue.Relevant to the library API team, which will review and decide on the PR/issue.