Open
Description
Feature gate: #![feature(const_eq_ignore_ascii_case)]
This is a tracking issue for const eq_ignore_ascii_case
on [u8]
and str
.
Public API
impl [u8] {
pub const fn eq_ignore_ascii_case(&self, other: &[u8]) -> bool;
}
impl str {
pub const fn eq_ignore_ascii_case(&self, other: &str) -> bool;
}
Steps / History
- Implementation: Add new unstable feature
const_eq_ignore_ascii_case
#131721 - Final comment period (FCP)1
- Stabilization PR
Unresolved Questions
- None yet.