Expand description
Smart string implementation for Titan-rs.
Provides a Copy-on-Write string type that supports:
- Borrowed slices (
&'a str) for zero-copy parsing. - Owned strings (
String) for modification. - Shared strings (
Arc<str>) for efficient caching.