| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -0/+62 | |
| 2013-05-07 | auto merge of #6292 : thestinger/rust/cleanup, r=brson | bors | -3/+12 | |
| 2013-05-07 | Add pop() and swap() to the Map trait | Alex Crichton | -21/+54 | |
| 2013-05-06 | remove borrowck workarounds from the containers | Daniel Micay | -3/+12 | |
| 2013-05-04 | Register snapshots | Brian Anderson | -95/+0 | |
| 2013-04-10 | core: changes in response to #5656 | Niko Matsakis | -1/+96 | |
| 2013-04-10 | Revert map.each to something which takes two parameters | Niko Matsakis | -34/+28 | |
| rather than a tuple. The current setup iterates over `BaseIter<(&'self K, &'self V)>` where 'self is a lifetime declared *in the each method*. You can't place such a type in the impl declaration. The compiler currently allows it, but this will not be legal under #5656 and I'm pretty sure it's not sound now. | ||||
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -39/+39 | |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -3/+4 | |
| 2013-03-26 | librustc: Remove all uses of the old `[T * N]` fixed-length vector syntax | Patrick Walton | -1/+1 | |
| 2013-03-25 | trie: improve docstring | Daniel Micay | -1/+1 | |
| 2013-03-24 | expose find_mut in the Map trait | Daniel Micay | -6/+6 | |
| 2013-03-24 | trie: add find_mut method | Daniel Micay | -1/+32 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -3/+3 | |
| 2013-03-22 | trie: make the TrieSet impl public | Daniel Micay | -2/+1 | |
| 2013-03-22 | trie: inline the other TrieSet wrapper methods | Daniel Micay | -0/+3 | |
| 2013-03-22 | trie: rm workaround for issue #3469 | Daniel Micay | -2/+1 | |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -23/+23 | |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -3/+3 | |
| 2013-03-21 | trie: make impl pub | Daniel Micay | -3/+1 | |
| 2013-03-18 | librustc: Make the compiler ignore purity. | Patrick Walton | -4/+4 | |
| For bootstrapping purposes, this commit does not remove all uses of the keyword "pure" -- doing so would cause the compiler to no longer bootstrap due to some syntax extensions ("deriving" in particular). Instead, it makes the compiler ignore "pure". Post-snapshot, we can remove "pure" from the language. There are quite a few (~100) borrow check errors that were essentially all the result of mutable fields or partial borrows of `@mut`. Per discussions with Niko I think we want to allow partial borrows of `@mut` but detect obvious footguns. We should also improve the error message when `@mut` is erroneously reborrowed. | ||||
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime ↵ | Patrick Walton | -6/+6 | |
| notation. rs=delifetiming | ||||
| 2013-03-15 | add a test for the chunk function | Daniel Micay | -0/+22 | |
| 2013-03-15 | core: fix trie chunk function | Graydon Hoare | -2/+2 | |
| 2013-03-15 | add constructor to TrieSet (was missing) | Daniel Micay | -0/+7 | |
| 2013-03-13 | add the mutate_values method to the Map trait | Daniel Micay | -11/+11 | |
| 2013-03-11 | libsyntax: Stop parsing bare functions in preparation for switching them over | Patrick Walton | -1/+4 | |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -12/+12 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -32/+32 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -2/+2 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-05 | trie: remove the Copy requirement | Daniel Micay | -16/+30 | |
| 2013-03-05 | trie: fix breaking out of the iterators early | Daniel Micay | -12/+55 | |
| 2013-03-05 | trie: fix each_reverse | Daniel Micay | -1/+37 | |
| 2013-03-02 | add an initial radix trie implementation | Daniel Micay | -0/+369 | |
