| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-06-21 | Library vecs are fast now. | Eric Holk | -0/+2 | |
| 2012-06-21 | Move vector addition out of trans and into libcore. | Eric Holk | -3/+3 | |
| 2012-06-20 | Comments only: typos | Tim Chevalier | -1/+1 | |
| 2012-06-20 | Remove bind. Issue #2189 | Brian Anderson | -8/+8 | |
| 2012-06-19 | Moved arc to libcore and added an arc that allows shared mutable state ↵ | Eric Holk | -165/+1 | |
| through mutual exclusion. | ||||
| 2012-06-18 | std: Use the singular 'test' when running just 1. Closes #2554 | Brian Anderson | -1/+2 | |
| 2012-06-16 | Revert "Moved arc to libstd and added an arc that allows shared mutable ↵ | Tim Chevalier | -1/+165 | |
| state through mutual exclusion." This reverts commit 015527b0cee0bc5cfaac8dd610035a0c1b2f8ea6. | ||||
| 2012-06-15 | Moved arc to libstd and added an arc that allows shared mutable state ↵ | Eric Holk | -165/+1 | |
| through mutual exclusion. | ||||
| 2012-06-14 | Remove unneeded spawn in std::timer, and annotate a FIXME | Tim Chevalier | -4/+1 | |
| 2012-06-14 | Comments only: annotate FIXMEs | Tim Chevalier | -1/+1 | |
| 2012-06-13 | Merge remote-tracking branch 'erickt/master' into incoming | Brian Anderson | -0/+12 | |
| 2012-06-13 | Box AST idents | Brian Anderson | -0/+6 | |
| 2012-06-13 | Add a couple more to_json impls. | Erick Tryzelaar | -0/+12 | |
| 2012-06-12 | Fix json no-implicit-copy warnings | Erick Tryzelaar | -105/+118 | |
| 2012-06-12 | std: Remove copy from all the hashmap key type params | Erick Tryzelaar | -2/+2 | |
| 2012-06-12 | whitespace cleanup | Erick Tryzelaar | -1/+1 | |
| 2012-06-12 | Rewrite int/uint helper functions to use refs | Erick Tryzelaar | -10/+4 | |
| This lets us pass them to generic functions. | ||||
| 2012-06-12 | std: Add a to_str impl for json::error. | Erick Tryzelaar | -0/+6 | |
| 2012-06-08 | std: Typo fix in docs. | Lindsey Kuper | -1/+1 | |
| 2012-06-08 | revise map interface so that K need not be copyable | Niko Matsakis | -7/+7 | |
| 2012-06-08 | Convert reinterpret_cast + forget to 'transmute' | Brian Anderson | -5/+2 | |
| 2012-06-07 | Use #[cfg(unix)] and #[cfg(windows)] everywhere | Brian Anderson | -60/+24 | |
| 2012-06-07 | Merge branch 'incoming' | Patrick Walton | -0/+35 | |
| 2012-06-07 | std: Implement a fuzzy-equal interface | Patrick Walton | -0/+35 | |
| 2012-06-06 | std: Add debug::breakpoint | Brian Anderson | -0/+14 | |
| 2012-06-06 | Merge remote-tracking branch 'mozilla/incoming' | Niko Matsakis | -9/+4 | |
| Conflicts: src/rustc/middle/tstate/auxiliary.rs | ||||
| 2012-06-06 | Rewrite deque to use dvec | Niko Matsakis | -17/+21 | |
| 2012-06-06 | constrain scope of mut ptr to please borrowck | Niko Matsakis | -3/+1 | |
| 2012-06-06 | Revert "Revert "Merge pull request #2516 from mozilla/incoming" due to failures" | Tim Chevalier | -9/+4 | |
| This reverts commit 9fae95860de510f6874810cf43efb83f101246ef. | ||||
| 2012-06-04 | Make vecs implicitly copyable for all of our projects. | Michael Sullivan | -0/+2 | |
| 2012-06-04 | Machine types are different from int/uint, etc (Issue #2187) | Eric Holk | -19/+26 | |
| 2012-06-04 | Get rid of warnings from instantiating typarams with non-implicitly copyable ↵ | Michael Sullivan | -1/+2 | |
| types. | ||||
| 2012-06-03 | prohibit type parameters in native fns and other minor fixes | Niko Matsakis | -10/+22 | |
| trans now can safely assert that it never sees a type param | ||||
| 2012-06-02 | make vec fns/methods take imm slices. | Niko Matsakis | -21/+8 | |
| this also repairs the unsoundness in typing of unpack_slice, which was silently converting a const ptr to an imm one. | ||||
| 2012-06-01 | squelch warnings in tests | Niko Matsakis | -3/+3 | |
| 2012-05-31 | Add some convenience helpers to getopts. Close #1837. | Graydon Hoare | -0/+51 | |
| 2012-05-31 | Make std::map require const keys. | Eric Holk | -3/+5 | |
| 2012-05-31 | Some fixes to bitv. Close #2342. | Graydon Hoare | -13/+34 | |
| 2012-05-30 | Add xorshift to core::rand, which gave a 3x speedup for graph generation in ↵ | Eric Holk | -1/+1 | |
| the bfs code. Also, remove trailing white space. | ||||
| 2012-05-30 | Remove warnings in std::par. | Eric Holk | -10/+14 | |
| 2012-05-30 | Added a factory version of par::mapi, which avoids the need for share_arc, ↵ | Eric Holk | -15/+40 | |
| and copies arcs between tasks better. | ||||
| 2012-05-30 | Move par into libstd. Closes #2441. | Eric Holk | -1/+110 | |
| 2012-05-30 | Rewriting shared_arc to work around Issue #2444. | Eric Holk | -15/+42 | |
| Sadly, this exposes another ICE when trying to use the new version with Graph500 | ||||
| 2012-05-29 | Moving the arc tests into arc.rs. | Eric Holk | -0/+31 | |
| 2012-05-29 | Adding shared_arc to hide some of the tedium of sharing an arc between tasks. | Eric Holk | -7/+42 | |
| Also added some asserts and logging to trans. Modified graph500 to use the shared_arc, but this unfortunately doesn't work due to #2444. | ||||
| 2012-05-28 | std: add json::to_str and json::to_json iface. | Erick Tryzelaar | -0/+105 | |
| 2012-05-27 | std: Fix bitv each() method (issue 2363) | Benjamin Kircher | -0/+10 | |
| 2012-05-26 | core: Make range follow the for loop protocol | Brian Anderson | -11/+11 | |
| 2012-05-25 | Get rid of many implicit copies as a preliminary to Issue #2448. | Michael Sullivan | -26/+24 | |
| 2012-05-25 | std: Modify arc to tolerate upcoming change to uniques | Brian Anderson | -7/+14 | |
