| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-04-19 | test: Rewrite nbody and spectralnorm shootout benchmarks | Patrick Walton | -299/+165 | |
| 2013-04-19 | librustc: Switch the `@`s in types with `~` | Patrick Walton | -0/+1 | |
| 2013-04-18 | core::comm: Modernize constructors to use `new` | Brian Anderson | -7/+7 | |
| 2013-04-18 | core: Remove pipes::spawn_service, spawn_service_recv | Brian Anderson | -1/+48 | |
| These are only used in test cases; pipes isn't the right place for them; they are unnecessary. Conflicts: src/libcore/rt/uv/mod.rs | ||||
| 2013-04-10 | Revert map.each to something which takes two parameters | Niko Matsakis | -1/+1 | |
| 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-04-03 | auto merge of #5696 : thestinger/rust/hashmap, r=sanxiyn | bors | -20/+20 | |
| This naming is free now that `oldmap` has finally been removed, so this is a search-and-replace to take advantage of that. It might as well be called `HashMap` instead of being named after the specific implementation, since there's only one. SipHash distributes keys so well that I don't think there will ever be much need to use anything but a simple hash table with open addressing. If there *is* a better way to do it, it will probably be better in all cases and can just be the default implementation. A cuckoo-hashing implementation combining a weaker hash with SipHash could be useful, but that won't be as general purpose - you would need to write a separate fast hash function specialized for the type to really take advantage of it (like taking a page from libstdc++/libc++ and just using the integer value as the "hash"). I think a more specific naming for a truly alternative implementation like that would be fine, with the nice naming reserved for the general purpose container. | ||||
| 2013-04-03 | rename Linear{Map,Set} => Hash{Map,Set} | Daniel Micay | -20/+20 | |
| 2013-04-03 | hashmap: rm linear namespace | Daniel Micay | -5/+5 | |
| 2013-04-03 | Make bench/noise.rs more idiomatic and 20x faster | Ben Striegel | -29/+32 | |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -43/+43 | |
| 2013-03-27 | auto merge of #5569 : thestinger/rust/map, r=catamorphism | bors | -3/+3 | |
| 2013-03-26 | test: Fix tests | Patrick Walton | -4/+5 | |
| 2013-03-26 | librustc: Remove all uses of the old `[T * N]` fixed-length vector syntax | Patrick Walton | -6/+6 | |
| 2013-03-26 | libcore: Change `[const T]` to `const [T]` everywhere | Patrick Walton | -4/+4 | |
| 2013-03-26 | option: rm functions that duplicate methods | Daniel Micay | -8/+8 | |
| 2013-03-26 | fix the core-map benchmark's descending range | Daniel Micay | -3/+3 | |
| 2013-03-26 | std: Remove the oldmap module | Alex Crichton | -1/+0 | |
| 2013-03-26 | test: Remove uses of oldmap::HashMap | Alex Crichton | -51/+38 | |
| 2013-03-26 | Fixed all use sites and tests | Marvin Löbel | -1/+2 | |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -6/+6 | |
| 2013-03-22 | test: Remove `pure` from the test suite | Patrick Walton | -5/+5 | |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -4/+4 | |
| 2013-03-21 | auto merge of #5480 : pcwalton/rust/at-const, r=pcwalton | bors | -0/+1 | |
| r? @catamorphism | ||||
| 2013-03-21 | auto merge of #5479 : Kimundi/rust/str-dealloc, r=z0w0 | bors | -1/+2 | |
| This makes the `trim` and `substr` functions return a slice instead of an `~str`, and removes the unnecessary `Trimmable` trait (`StrSlice` already contains the same functionality). Also moves the `ToStr` implementations for the three str types into the str module in anticipation of further untangling. | ||||
| 2013-03-21 | librustc: Forbid destructors from being attached to any structs that might ↵ | Patrick Walton | -0/+1 | |
| contain non-Owned fields. r=nmatsakis | ||||
| 2013-03-21 | Un-renamed trim and substr functions. | Marvin Löbel | -1/+1 | |
| 2013-03-21 | Switched over substr and trim functions in str to be non-allocating, ↵ | Marvin Löbel | -1/+2 | |
| temporary renamed them to better track use-sites | ||||
| 2013-03-21 | replace the core-map benchmark | Daniel Micay | -247/+86 | |
| * Closes #4603 | ||||
| 2013-03-18 | Refactored sudoku benchmark to use traits and added some tests | Stefan Plantikow | -106/+201 | |
| 2013-03-14 | auto merge of #5366 : tedhorst/rust/threadring, r=brson | bors | -0/+74 | |
| 2013-03-14 | test: Remove deprecated features from benchmark tests. rs=burningtree | Patrick Walton | -7/+15 | |
| 2013-03-13 | reinstate test/bench/shootout-threadring.rs | Ted Horst | -0/+74 | |
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -2/+2 | |
| and obsolete `-` mode altogether (it *was* parsed as `+` mode). | ||||
| 2013-03-11 | Remove uses of log | Brian Anderson | -7/+7 | |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -8/+8 | |
| 2013-03-08 | test: Removing dvec uses | Alex Crichton | -76/+0 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -31/+31 | |
| 2013-03-07 | librustc: Remove "extern mod { ... }" from librustc, librustdoc, and tests. ↵ | Patrick Walton | -3/+5 | |
| rs=deexterning | ||||
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -3/+6 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-05 | core: convert vec::{last,last_opt} to return references | Erick Tryzelaar | -1/+1 | |
| 2013-03-02 | test: Remove `fn@`, `fn~`, and `fn&` from the test suite. rs=defun | Patrick Walton | -29/+33 | |
| 2013-02-28 | Remove legacy object creation mode, and convert remaining uses of it | Niko Matsakis | -1/+1 | |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -2/+2 | |
| 2013-02-26 | auto merge of #5119 : Kimundi/rust/incoming, r=catamorphism | bors | -1/+1 | |
| Removed deprecated `str()` functions in int-template.rs and uint-template.rs | ||||
| 2013-02-26 | bench: Fix botched option dances. rs=demuting | Patrick Walton | -13/+16 | |
| 2013-02-26 | Removed deprecated `str()` functions in int-template.rs and uint-template.rs | Marvin Löbel | -1/+1 | |
| 2013-02-26 | test: De-~mut the test suite. rs=demuting | Patrick Walton | -37/+25 | |
| 2013-02-25 | Revert "test: De-~mut the test suite. rs=demuting" | Patrick Walton | -25/+37 | |
| This reverts commit f63efdc2100ff28e2a42600641835e7bd8bde591. | ||||
| 2013-02-25 | test: De-~mut the test suite. rs=demuting | Patrick Walton | -37/+25 | |
| 2013-02-24 | test: xfail-pretty some benchmarks. rs=burningtree | Patrick Walton | -0/+8 | |
