stdlib: Added a small rope library

This commit is contained in:
David Rajchenbach-Teller 2011-11-04 18:38:42 +01:00 committed by Brian Anderson
parent 07574363ef
commit a5dcf66ad3
3 changed files with 1134 additions and 0 deletions

1131
src/lib/rope.rs Normal file

File diff suppressed because it is too large Load diff

View file

@ -11,6 +11,7 @@ export box, char, float, int, str, ptr, uint, u8, u32, u64, vec;
export aio, comm, fs, io, net, run, sio, sys, task;
export ctypes, either, option, result, util;
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
export rope;
export ebml, dbg, getopts, math, rand, sha1, term, time, unsafe;
export extfmt, test;
// FIXME: generic_os and os_fs shouldn't be exported
@ -61,6 +62,7 @@ mod deque;
mod fun_treemap;
mod list;
mod map;
mod rope;
mod smallintmap;
mod sort;
mod treemap;

View file

@ -33,6 +33,7 @@ mod uint;
mod float;
mod math;
mod result;
mod rope;
// Local Variables:
// mode: rust