rust/library/core
bors 11e760b7f4 Auto merge of #130738 - bjoernager:const-make-ascii, r=jhpratt
Mark `make_ascii_uppercase` and `make_ascii_lowercase` in `[u8]` and `str` as const.

Relevant tracking issue: #130698

This PR extends #130697 and #130713 to the similar methods in byte slices (`[u8]`) and string slices (`str`).

For the `str` methods, this simply requires adding the `const` specifier to the function signatures. The `[u8]` methods, however, require (at least a temporary) reimplementation due to the use of iterators and `for` loops.
2024-09-24 08:52:12 +00:00
..
benches Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00
src Auto merge of #130738 - bjoernager:const-make-ascii, r=jhpratt 2024-09-24 08:52:12 +00:00
tests stabilize const_intrinsic_copy 2024-09-23 22:12:54 +02:00
Cargo.toml Port std library to RTEMS 2024-09-03 09:19:29 +02:00