StringStore

Store sets of strings with different lengths compactly.

@safe pure
struct StringStore {}

Members

Functions

insertBack
void insertBack(string value)
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

StringStore ss;
ss.insertBack("alpha");
ss.insertBack("beta");

Meta