about summary refs log tree commit diff
path: root/src/libstd/dlist.rs
AgeCommit message (Collapse)AuthorLines
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-981/+0
This only changes the directory names; it does not change the "real" metadata names.
2013-05-20Remove all unnecessary allocations (as flagged by lint)Alex Crichton-4/+4
2013-05-19Register snapshotsBrian Anderson-47/+0
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-2/+2
2013-05-14Use static string with fail!() and remove fail!(fmt!())Björn Steinbrink-18/+16
fail!() used to require owned strings but can handle static strings now. Also, it can pass its arguments to fmt!() on its own, no need for the caller to call fmt!() itself.
2013-05-10test: Use the new `for` protocolAlex Crichton-0/+12
2013-05-10std: Use the new `for` protocolAlex Crichton-6/+43
2013-04-28make way for a new iter moduleDaniel Micay-2/+2
2013-04-27only use #[no_core] in libcoreDaniel Micay-2/+0
2013-04-20std: remove unused 'mut' variablesAlex Crichton-4/+4
2013-04-16libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ↵Huon Wilson-38/+38
pub mod or pub fn).
2013-04-08Removing no longer needed unsafe blocksAlex Crichton-6/+3
2013-03-30move dlist from core -> stdDaniel Micay-0/+986
Closes #3549