summary refs log tree commit diff
path: root/src/libstd/prelude.rs
AgeCommit message (Collapse)AuthorLines
2013-06-30Convert vec::dedup to a method.Huon Wilson-1/+1
2013-06-30Convert vec::{bsearch, bsearch_elem} to methods.Huon Wilson-1/+1
2013-06-28librustc: Change "Owned" to "Send" everywherePatrick Walton-1/+1
2013-06-28librustc: Rename Const to FreezePatrick Walton-1/+1
2013-06-28librustc: Change Const to Freeze in the compilerPatrick Walton-1/+2
2013-06-24remove old_iterDaniel Micay-2/+0
the `test/run-pass/class-trait-bounded-param.rs` test was xfailed and written in an ancient dialect of Rust so I've just removed it this also removes `to_vec` from DList because it's provided by `std::iter::to_vec` an Iterator implementation is added for OptVec but some transitional internal iterator methods are still left
2013-06-17Improved std::asciiMarvin Löbel-1/+1
- Fixed tests - Added methods - Renamed casting methods to be shorter closes #7150
2013-06-15rm CopyableOrderedIterDaniel Micay-2/+2
replaced with OrdIterator
2013-06-14rm CopyableNonstrictIterDaniel Micay-1/+1
copies can just be done explicitly: `xs.transform(|x|x.clone())`
2013-06-14rm MutableIterDaniel Micay-1/+1
replaced with mutable implementations of Iterator
2013-06-14rm ExtendedMutableIterDaniel Micay-1/+0
replaced with `xs.mut_iter().enumerate()`
2013-06-14add IteratorUtil to the preludeDaniel Micay-2/+1
2013-06-13std: make all strings Equiv-alent to each other, generalise Path.push_many ↵Huon Wilson-1/+1
to take any type of string.
2013-06-12std: unify the str -> [u8] functions as 3 methods: .as_bytes() and ↵Huon Wilson-1/+1
.as_bytes_with_null[_consume](). The first acts on &str and is not nul-terminated, the last two act on strings that are always null terminated (&'static str, ~str and @str).
2013-06-07add the Iterator trait to the preludeDaniel Micay-0/+1
2013-06-08std: remove each[i]_mut functions, in favour of iterators.Huon Wilson-1/+0
2013-06-06FixupsMarvin Löbel-2/+3
2013-06-03auto merge of #6907 : steveklabnik/rust/prelude_docs, r=graydonbors-1/+18
2013-06-03Add better documentation for the Prelude.Steve Klabnik-1/+18
2013-06-03rename the Ptr trait to RawPtrDaniel Micay-1/+1
Closes #6607
2013-06-03Add traits for concat and connect methodsBrendan Zabarauskas-2/+2
2013-05-31Add as_c_str method on stringsBen Striegel-1/+1
2013-05-30Add 'Sized' builtin kind; doesn't do anything yetBen Blum-1/+1
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-48/+4
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+111
This only changes the directory names; it does not change the "real" metadata names.