libstd: Implement StrBuf, a new string buffer type like Vec, and

port all code over to use it.
This commit is contained in:
Patrick Walton
2014-04-02 16:54:22 -07:00
committed by Huon Wilson
parent 7fbcb400f0
commit d8e45ea7c0
66 changed files with 990 additions and 931 deletions

View File

@@ -128,6 +128,7 @@ pub mod tuple;
pub mod slice;
pub mod vec;
pub mod str;
pub mod strbuf;
pub mod ascii;