We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdd8436 commit 1de1a93Copy full SHA for 1de1a93
src/ascii_str.rs
@@ -169,15 +169,6 @@ impl PartialEq<AsciiStr> for str {
169
}
170
171
172
-/*
173
-impl PartialOrd<AsciiString> for AsciiStr {
174
- #[inline]
175
- fn partial_cmp(&self, other: &AsciiString) -> Option<Ordering> {
176
- self.as_bytes().partial_cmp(other.as_bytes())
177
- }
178
-}
179
-*/
180
-
181
impl Default for &'static AsciiStr {
182
fn default() -> &'static AsciiStr {
183
unsafe { mem::transmute("") }
src/lib.rs
@@ -7,8 +7,6 @@
7
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
-//
11
-// ignore-lexer-test FIXME #15679
12
13
//! Operations on ASCII strings and characters
14
0 commit comments