| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-08-15 | tuple: remove obsolete ExtendedTupleOps | Daniel Micay | -1/+1 | |
| replaced by iterators (generic composable `map` and `zip` adaptors) | ||||
| 2013-08-12 | auto merge of #8400 : blake2-ppc/rust/seq-ord, r=cmr | bors | -0/+1 | |
| Use Eq + Ord for lexicographical ordering of sequences. For each of <, <=, >= or > as R, use:: [x, ..xs] R [y, ..ys] = if x != y { x R y } else { xs R ys } Previous code using `a < b` and then `!(b < a)` for short-circuiting fails on cases such as [1.0, 2.0] < [0.0/0.0, 3.0], where the first element was effectively considered equal. Containers like &[T] did also implement only one comparison operator `<`, and derived the comparison results from this. This isn't correct either for Ord. Implement functions in `std::iterator::order::{lt,le,gt,ge,equal,cmp}` that all iterable containers can use for lexical order. We also visit tuple ordering, having the same problem and same solution (but differing implementation). | ||||
| 2013-08-11 | add intrinsics for checked overflow add/sub/mul | Daniel Micay | -1/+1 | |
| 2013-08-10 | std: merge Iterator and IteratorUtil | Erick Tryzelaar | -1/+1 | |
| 2013-08-10 | std: merge iterator::DoubleEndedIterator and DoubleEndedIteratorUtil | Erick Tryzelaar | -1/+1 | |
| 2013-08-08 | std: Implement traits for the one-tuple | blake2-ppc | -0/+1 | |
| (A,) did not have the trait implementations of 2- to 12- tuples. | ||||
| 2013-08-07 | Merge remote-tracking branch 'remotes/origin/master' into ↵ | Erick Tryzelaar | -1/+2 | |
| remove-str-trailing-nulls | ||||
| 2013-08-06 | add Extendable to the prelude | Daniel Micay | -1/+2 | |
| 2013-08-04 | std: replace str::as_c_str with std::c_str | Erick Tryzelaar | -0/+1 | |
| 2013-08-04 | std: remove str::NullTerminatedStr | Erick Tryzelaar | -1/+1 | |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -1/+2 | |
| 2013-07-23 | std: move StrUtil::as_c_str into StrSlice | Erick Tryzelaar | -1/+1 | |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -1/+1 | |
| 2013-07-13 | Split mutable methods out of Set and Map | Steven Fackler | -1/+1 | |
| Fixes most of #4989. I didn't add Persistent{Set,Map} since the only persistent data structure is fun_treemap and its functionality is currently too limited to build a trait out of. | ||||
| 2013-07-12 | extend the iterator tutorial | Daniel Micay | -2/+3 | |
| documents conversion, size hints and double-ended iterators and adds more of the traits to the prelude | ||||
| 2013-07-04 | Remove standalone comparison functions in vec, make the trait impls better. | Huon Wilson | -1/+1 | |
| 2013-07-03 | auto merge of #7474 : Seldaek/rust/clean-iter, r=thestinger | bors | -1/+1 | |
| I think it's WIP - but I wanted to ask for feedback (/cc @thestinger) I had to move the impl of FromIter for vec into extra::iter because I don't think std can depend on extra, but that's a bit messed up. Similarly some FromIter uses are gone now, not sure if this is fixable or if I made a complete mess here.. | ||||
| 2013-07-01 | Move most iter functionality to extra, fixes #7343 | Jordi Boggiano | -1/+1 | |
| 2013-06-30 | Convert vec::dedup to a method. | Huon Wilson | -1/+1 | |
| 2013-06-30 | Convert vec::{bsearch, bsearch_elem} to methods. | Huon Wilson | -1/+1 | |
| 2013-06-28 | librustc: Change "Owned" to "Send" everywhere | Patrick Walton | -1/+1 | |
| 2013-06-28 | librustc: Rename Const to Freeze | Patrick Walton | -1/+1 | |
| 2013-06-28 | librustc: Change Const to Freeze in the compiler | Patrick Walton | -1/+2 | |
| 2013-06-24 | remove old_iter | Daniel 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-17 | Improved std::ascii | Marvin Löbel | -1/+1 | |
| - Fixed tests - Added methods - Renamed casting methods to be shorter closes #7150 | ||||
| 2013-06-15 | rm CopyableOrderedIter | Daniel Micay | -2/+2 | |
| replaced with OrdIterator | ||||
| 2013-06-14 | rm CopyableNonstrictIter | Daniel Micay | -1/+1 | |
| copies can just be done explicitly: `xs.transform(|x|x.clone())` | ||||
| 2013-06-14 | rm MutableIter | Daniel Micay | -1/+1 | |
| replaced with mutable implementations of Iterator | ||||
| 2013-06-14 | rm ExtendedMutableIter | Daniel Micay | -1/+0 | |
| replaced with `xs.mut_iter().enumerate()` | ||||
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -2/+1 | |
| 2013-06-13 | std: make all strings Equiv-alent to each other, generalise Path.push_many ↵ | Huon Wilson | -1/+1 | |
| to take any type of string. | ||||
| 2013-06-12 | std: 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-07 | add the Iterator trait to the prelude | Daniel Micay | -0/+1 | |
| 2013-06-08 | std: remove each[i]_mut functions, in favour of iterators. | Huon Wilson | -1/+0 | |
| 2013-06-06 | Fixups | Marvin Löbel | -2/+3 | |
| 2013-06-03 | auto merge of #6907 : steveklabnik/rust/prelude_docs, r=graydon | bors | -1/+18 | |
| 2013-06-03 | Add better documentation for the Prelude. | Steve Klabnik | -1/+18 | |
| 2013-06-03 | rename the Ptr trait to RawPtr | Daniel Micay | -1/+1 | |
| Closes #6607 | ||||
| 2013-06-03 | Add traits for concat and connect methods | Brendan Zabarauskas | -2/+2 | |
| 2013-05-31 | Add as_c_str method on strings | Ben Striegel | -1/+1 | |
| 2013-05-30 | Add 'Sized' builtin kind; doesn't do anything yet | Ben Blum | -1/+1 | |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -48/+4 | |
| 2013-05-22 | libstd: 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. | ||||
