rust/src/libstd
2013-07-25 05:57:52 -04:00
..
num Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
rand Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
rt libstd: Fix errors when rtdebug! is not a noop. 2013-07-25 05:57:52 -04:00
str vec: remove BaseIter implementation 2013-06-23 02:05:20 -04:00
task new snapshot 2013-07-22 01:09:48 -04:00
unstable libstd: Fix errors when rtdebug! is not a noop. 2013-07-25 05:57:52 -04:00
at_vec.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
bool.rs Impl Not for bool 2013-07-09 16:35:56 -04:00
borrow.rs replace #[inline(always)] with #[inline]. r=burningtree. 2013-06-18 14:48:48 -07:00
cast.rs librustc: Remove all uses of "copy". 2013-07-17 14:57:51 -07:00
cell.rs new snapshot 2013-07-22 01:09:48 -04:00
char.rs Faster check for ascii-space 2013-07-06 01:54:29 -04:00
cleanup.rs new snapshot 2013-07-22 01:09:48 -04:00
clone.rs auto merge of #7894 : pcwalton/rust/and-pointers-in-at-boxes, r=brson 2013-07-20 10:55:34 -07:00
cmp.rs cmp: Use default methods in trait Eq, require only Eq::eq 2013-07-15 13:24:35 +02:00
comm.rs Use Option .take() or .take_unwrap() instead of util::replace where possible 2013-07-20 05:12:05 -04:00
condition.rs new snapshot 2013-07-22 01:09:48 -04:00
container.rs Split mutable methods out of Set and Map 2013-07-13 19:44:36 -07:00
either.rs Add Either::expect_{left,right} 2013-07-20 05:08:55 -04:00
from_str.rs Require documentation by default for libstd 2013-05-30 01:02:55 -05:00
gc.rs new snapshot 2013-07-22 01:09:48 -04:00
hash.rs librustc: Remove the broken overloaded assign-ops from the language. 2013-06-28 10:44:16 -04:00
hashmap.rs Minor cleanup of hashmap 2013-07-21 20:10:55 -07:00
io.rs std: remove str::to_owned and str::raw::slice_bytes_owned 2013-07-23 16:56:23 -07:00
iter.rs Move most iter functionality to extra, fixes #7343 2013-07-01 01:50:40 +02:00
iterator.rs Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
kinds.rs new snapshot 2013-07-22 01:09:48 -04:00
libc.rs librustc: Remove pub extern and priv extern from the language. 2013-07-20 17:39:38 -07:00
local_data.rs new snapshot 2013-07-22 01:09:48 -04:00
logging.rs librustc: Remove pub extern and priv extern from the language. 2013-07-20 17:39:38 -07:00
macros.rs std::rt: Improve the rtabort! macro 2013-06-18 16:27:48 -07:00
managed.rs managed: rm RC_EXCHANGE_UNIQUE constant 2013-06-30 16:22:58 -04:00
nil.rs replace #[inline(always)] with #[inline]. r=burningtree. 2013-06-18 14:48:48 -07:00
ops.rs std: add benchmark for allocating-and-dropping a struct with a dtor. 2013-07-22 16:56:11 -07:00
option.rs std: rename str.as_buf to as_imm_buf, add str.as_mut_buf 2013-07-23 16:56:22 -07:00
os.rs std: remove a malloc from os::fill_charp_buf 2013-07-23 16:56:23 -07:00
owned.rs replace #[inline(always)] with #[inline]. r=burningtree. 2013-06-18 14:48:48 -07:00
path.rs std: move StrUtil::as_c_str into StrSlice 2013-07-23 16:56:22 -07:00
pipes.rs librustc: Remove pub extern and priv extern from the language. 2013-07-20 17:39:38 -07:00
prelude.rs std: move StrUtil::as_c_str into StrSlice 2013-07-23 16:56:22 -07:00
ptr.rs std: move StrUtil::as_c_str into StrSlice 2013-07-23 16:56:22 -07:00
rand.rs Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
reflect.rs new snapshot 2013-07-22 01:09:48 -04:00
repr.rs new snapshot 2013-07-22 01:09:48 -04:00
result.rs rm obsolete no-op lints 2013-07-20 20:17:08 -04:00
run.rs std: str.as_bytes_with_null_consume() => str.to_bytes_with_null() 2013-07-24 12:33:49 -07:00
stackwalk.rs Require documentation by default for libstd 2013-05-30 01:02:55 -05:00
std.rs std: add #[cfg(test)] reference to extra so we can benchmark libstd. 2013-07-22 16:56:10 -07:00
str.rs auto merge of #7996 : erickt/rust/cleanup-strs, r=erickt 2013-07-24 13:25:36 -07:00
sys.rs std and extra: use as_c_str instead of as_buf in a couple places 2013-07-23 16:56:22 -07:00
to_bytes.rs libsyntax: Remove some multi-gigabyte clones that were preventing bootstrapping on Windows. 2013-07-17 14:57:56 -07:00
to_str.rs ToStr for HashMap does not need value to implement Eq or Hash 2013-07-24 09:45:21 -04:00
trie.rs std: Remove old magic core mod 2013-07-19 21:01:24 -04:00
tuple.rs rm obsolete no-op lints 2013-07-20 20:17:08 -04:00
unicode.rs rustc: add a lint to enforce uppercase statics. 2013-07-01 17:52:57 +10:00
util.rs std: various additional language benchmarks in util. 2013-07-22 16:56:11 -07:00
vec.rs auto merge of #7996 : erickt/rust/cleanup-strs, r=erickt 2013-07-24 13:25:36 -07:00