Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 823 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 823 Bytes

Global string intern pool

Rust version documentation LICENSE

Internal use of DashMap for concurrent support

Examples

use pstr::IStr;
let s = IStr::new("hello world");
use pstr::MowStr;
let mut s = MowStr::new("hello");
assert!(s.is_interned());

s.push_str(" ");
assert!(s.is_mutable());

s.mutdown().push_str("world");
assert_eq!(s, "hello world");

s.intern();
assert!(s.is_interned());