Crate strstr

Source
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 StrStr is a dynamic string made from a tree of immutable SubStr's. Inserting and removing data only needs to adjust the tree instead shifting characters around.