@@ -793,7 +793,7 @@ impl u8 {
793
793
#[ rustc_const_stable( feature = "const_ascii_ctype_on_intrinsics" , since = "1.47.0" ) ]
794
794
#[ inline]
795
795
pub const fn is_ascii_alphanumeric ( & self ) -> bool {
796
- matches ! ( * self , b'0' ..=b'9' | b'A' ..=b'Z' | b'a' ..=b'z' )
796
+ matches ! ( * self , b'0' ..=b'9' ) | matches ! ( * self , b'A' ..=b'Z' ) | matches ! ( * self , b'a' ..=b'z' )
797
797
}
798
798
799
799
/// Checks if the value is an ASCII decimal digit:
@@ -1206,9 +1206,9 @@ impl u128 {
1206
1206
swapped = "0x12907856341290785634129078563412" ,
1207
1207
reversed = "0x48091e6a2c48091e6a2c48091e6a2c48" ,
1208
1208
le_bytes = "[0x12, 0x90, 0x78, 0x56, 0x34, 0x12, 0x90, 0x78, \
1209
- 0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]",
1209
+ 0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12]",
1210
1210
be_bytes = "[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56, \
1211
- 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]",
1211
+ 0x78, 0x90, 0x12, 0x34, 0x56, 0x78, 0x90, 0x12]",
1212
1212
to_xe_bytes_doc = "" ,
1213
1213
from_xe_bytes_doc = "" ,
1214
1214
bound_condition = "" ,
0 commit comments