rust/library/core
Karl Meakin 262cd76333 Optimize SliceIndex<str> for RangeInclusive
Replace `self.end() == usize::MAX` and `self.end() + 1 > slice.len()`
with `self.end() >= slice.len()`. Same reasoning as previous commit.

Also consolidate the str panicking functions into function.
2026-02-10 23:19:01 +00:00
..
src Optimize SliceIndex<str> for RangeInclusive 2026-02-10 23:19:01 +00:00
Cargo.toml add autodiff examples 2025-11-16 23:35:37 -05:00