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
This commit is contained in:
Daniel Micay
2013-07-06 17:06:30 -04:00
parent 3e933b199c
commit 01833de7ea
3 changed files with 1 additions and 1445 deletions

View File

@@ -74,7 +74,6 @@ pub mod deque;
pub mod fun_treemap; pub mod fun_treemap;
pub mod list; pub mod list;
pub mod priority_queue; pub mod priority_queue;
pub mod rope;
pub mod smallintmap; pub mod smallintmap;
pub mod sort; pub mod sort;

File diff suppressed because it is too large Load Diff

View File

@@ -13,8 +13,7 @@
* *
* Strings are a packed UTF-8 representation of text, stored as null * Strings are a packed UTF-8 representation of text, stored as null
* terminated buffers of u8 bytes. Strings should be indexed in bytes, * terminated buffers of u8 bytes. Strings should be indexed in bytes,
* for efficiency, but UTF-8 unsafe operations should be avoided. For * for efficiency, but UTF-8 unsafe operations should be avoided.
* some heavy-duty uses, try extra::rope.
*/ */
use at_vec; use at_vec;