| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-05-18 | avoid modifying the variable we are alting over | Niko Matsakis | -2/+2 | |
| 2012-05-18 | std: Don't copy hash key until we must | Brian Anderson | -2/+2 | |
| 2012-05-17 | Added a method to convert sets to vectors. | Eric Holk | -0/+13 | |
| 2012-05-03 | Annotate more FIXMES in libstd (comments only) | Tim Chevalier | -1/+1 | |
| 2012-04-23 | Move map iface over to more `for`-friendly iteration methods | Marijn Haverbeke | -38/+29 | |
| 2012-03-26 | Bulk-edit mutable -> mut. | Graydon Hoare | -9/+9 | |
| 2012-03-23 | Fix inconsistent-iteration hazard in map.rs | Marijn Haverbeke | -6/+10 | |
| Closes #2049 | ||||
| 2012-03-22 | make --enforce-mut-vars always on, add mut annotations to remaining files | Niko Matsakis | -2/+2 | |
| 2012-03-16 | std: Add a a hashmap_from_vecs function | Erick Tryzelaar | -4/+52 | |
| 2012-03-16 | Check kind bounds when calling methods | Marijn Haverbeke | -1/+1 | |
| Closes #1915 | ||||
| 2012-03-14 | std: Rename the hashmap constructors to conform to new standards | Brian Anderson | -21/+21 | |
| Instead of using the new_ prefix just name them after their type | ||||
| 2012-03-14 | annotate libstd and start enforcing mutability | Niko Matsakis | -4/+5 | |
| 2012-03-13 | Overhaul constructor naming in libs | Brian Anderson | -17/+17 | |
| 2012-03-10 | Use loop instead of while(true) in libraries and compiler itself | Tim Chevalier | -4/+3 | |
| And remove spurious fails/unreachable() calls. | ||||
| 2012-03-09 | std: Convert to rustdoc | Brian Anderson | -93/+33 | |
| 2012-03-08 | Change util::unreachable to core::unreachable | Tim Chevalier | -1/+1 | |
| Closes #1931 | ||||
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -26/+28 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-07 | Revert "stdlib: Stop incurring vtable dispatch costs when hashmaps are used" | Patrick Walton | -28/+26 | |
| This reverts commit f0250a23d3fa2f8b4a4a4113ca89e41945a4cfed. | ||||
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -26/+28 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-02 | core: Remove _mut functions from vec | Brian Anderson | -1/+1 | |
| Instead, use vec::to_mut/from_mut to transform vectors in place as needed. | ||||
| 2012-02-09 | Increase precedence of as operator | Marijn Haverbeke | -1/+1 | |
| Closes #1717 | ||||
| 2012-02-05 | Merge remote-tracking branch 'erickt/master' | Brian Anderson | -1/+2 | |
| Conflicts: src/libcore/vec.rs src/libstd/getopts.rs | ||||
| 2012-01-31 | Change option::t to option | Tim Chevalier | -6/+6 | |
| Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming). | ||||
| 2012-01-28 | std: Whitespace cleanup. | Erick Tryzelaar | -1/+2 | |
| 2012-01-23 | s/block()/fn()/g | Niko Matsakis | -9/+9 | |
| 2012-01-21 | issue #1352: change param order on vec::init_elt, putting block in final ↵ | Graham Fawcett | -1/+1 | |
| position. To match the init_fn() and init_fn_mut() changes. | ||||
| 2012-01-19 | Additional ; to , changes, disable "tag" and ";" in parser. Close #1430. ↵ | Graydon Hoare | -2/+2 | |
| Close #1428. | ||||
| 2012-01-19 | lib: ';' to ',' in enums in more places | Patrick Walton | -5/+5 | |
| 2012-01-19 | stdlib: "tag" -> "enum" | Patrick Walton | -2/+2 | |
| 2012-01-18 | Remove '.' after nullary tags in patterns | Tim Chevalier | -7/+7 | |
| Does what it says on the tin. The next commit will remove support for this syntax. | ||||
| 2012-01-17 | libstd: Move std tests into libstd | Brian Anderson | -0/+244 | |
| 2012-01-13 | deprecate fn exprs and the fn() type, preferring fn@ and native fn | Niko Matsakis | -2/+2 | |
| 2012-01-11 | Implement std::map as an iface/impl instead of an obj | Marijn Haverbeke | -84/+49 | |
| 2012-01-06 | libcore: add [u8] helper functions to vec. | Erick Tryzelaar | -0/+9 | |
| 2012-01-06 | libstd: switch map to use libcore's hash functions. | Erick Tryzelaar | -2/+2 | |
| 2012-01-05 | Switch to new param kind bound syntax | Marijn Haverbeke | -20/+21 | |
| And remove support for the old syntax | ||||
| 2011-12-22 | Merge all 3 log syntaxes, tidy up residual misuses. | Graydon Hoare | -9/+8 | |
| 2011-12-22 | Whitespace cleanup. | Erick Tryzelaar | -0/+1 | |
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -14/+14 | |
| 2011-12-07 | use util::rational to work around bug w/ floats on win | Niko Matsakis | -4/+4 | |
| 2011-12-07 | Purge old map impl: more collisions, not clear it is safe on 64bit | Niko Matsakis | -205/+0 | |
| 2011-12-07 | improve comments | Niko Matsakis | -3/+21 | |
| 2011-12-07 | fix old map impl, add logging | Niko Matsakis | -15/+25 | |
| 2011-12-07 | add some debugging logs | Niko Matsakis | -1/+13 | |
| 2011-12-07 | dec size in remove | Niko Matsakis | -2/+2 | |
| 2011-12-07 | make rehashing more efficient by not re-allocating entries | Niko Matsakis | -18/+17 | |
| 2011-12-07 | implement a chained hashmap | Niko Matsakis | -2/+243 | |
| 2011-12-06 | hack for now: map uint hashes into a u32, which helps x86_64 perf. | Niko Matsakis | -8/+12 | |
| 2011-12-06 | Establish 'core' library separate from 'std'. | Graydon Hoare | -0/+336 | |
