rust/library/core
Jubilee b496974c53
Rollup merge of #131520 - zachs18:const-str-split, r=Noratrieb
Mark `str::is_char_boundary` and `str::split_at*` unstably `const`.

Tracking issues: #131516, #131518

First commit implements `const_is_char_boundary`, second commit implements `const_str_split_at` (which depends on `const_is_char_boundary`)

~~I used `const_eval_select` for `is_char_boundary` since there is a comment about optimizations that would theoretically not happen with the simple `const`-compatible version (since `slice::get` is not `const`ifiable) cc #84751. I have not checked if this code difference is still required for the optimization, so it might not be worth the code complication, but 🤷.~~

This changes `str::split_at_checked` to use a new private helper function `split_at_unchecked` (copied from `split_at_mut_unchecked`) that does pointer stuff instead of `get_unchecked`, since that is not currently `const`ifiable due to using the `SliceIndex` trait.
2024-10-29 03:11:39 -07:00
..
benches Stabilize isqrt feature 2024-10-08 10:58:49 -04:00
src Rollup merge of #131520 - zachs18:const-str-split, r=Noratrieb 2024-10-29 03:11:39 -07:00
tests Rollup merge of #131391 - ChaiTRex:isqrt, r=scottmcm,tgross35 2024-10-28 12:14:57 +01:00
Cargo.toml