Expand description
This crate is WIP
§StrStr
Implements strings as trees of immutable substrings. Thus making many mutations significantly faster since only parts of a tree need to be adjusted instead shifting characters around.
Structs§
- StrStr
- A
StrStris a dynamic string made from a tree of immutableSubStr's. Inserting and removing data only needs to adjust the tree instead shifting characters around.