Rust library that provides zero copy string iterators for working with string slices. The library offers iterators similar to standard Rust string methods
// src/str_rsplit.rs
// StrRSplit iterator
// Splits a string slice in reverse order by a specified delimiter without allocating.
// Each item returned is a &'a str referencing the original string.
// Usage: `StrRSpli::new(some_str, delimiter)`