pub fn intern_string(s: &str) -> Arc<str>
Intern a string globally
If the mutex is poisoned, returns a fresh Arc<str> without interning. This ensures the library never panics due to mutex poisoning.
Arc<str>