diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-07-06 17:06:30 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-07-06 17:06:30 -0400 |
| commit | 01833de7ea4c3d73351277b52f841d42d7d2dbb8 (patch) | |
| tree | 68d707f10ec0d76e62d7f2e379d0f6d73830f1b3 /src/libstd | |
| parent | 3e933b199c69e1b6c32ecb65bb8f06127cfb8312 (diff) | |
| download | rust-01833de7ea4c3d73351277b52f841d42d7d2dbb8.tar.gz rust-01833de7ea4c3d73351277b52f841d42d7d2dbb8.zip | |
remove extra::rope
It's broken/unmaintained and needs to be rewritten to avoid managed pointers and needless copies. A full rewrite is necessary and the API will need to be redone so it's not worth keeping this around. Closes #2236, #2744
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/str.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs index 564c58f7097..748d5f05aae 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -13,8 +13,7 @@ * * Strings are a packed UTF-8 representation of text, stored as null * terminated buffers of u8 bytes. Strings should be indexed in bytes, - * for efficiency, but UTF-8 unsafe operations should be avoided. For - * some heavy-duty uses, try extra::rope. + * for efficiency, but UTF-8 unsafe operations should be avoided. */ use at_vec; |
