| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -1/+1 | |
| 2013-10-01 | remove the `float` type | Daniel Micay | -1/+0 | |
| It is simply defined as `f64` across every platform right now. A use case hasn't been presented for a `float` type defined as the highest precision floating point type implemented in hardware on the platform. Performance-wise, using the smallest precision correct for the use case greatly saves on cache space and allows for fitting more numbers into SSE/AVX registers. If there was a use case, this could be implemented as simply a type alias or a struct thanks to `#[cfg(...)]`. Closes #6592 The mailing list thread, for reference: https://mail.mozilla.org/pipermail/rust-dev/2013-July/004632.html | ||||
| 2013-09-25 | Fix run-pass tests to have 'pub fn main' | Alex Crichton | -1/+1 | |
| This is required by the check-fast target because each test is slurped up into a submodule. | ||||
| 2013-05-16 | syntax: implement #[deriving(DeepClone)]. Fixes #6514. | Huon Wilson | -1/+11 | |
| 2013-03-22 | test: replace uses of old deriving attribute with new one | Andrew Paseltiner | -1/+1 | |
| 2013-03-09 | core: implement Clone for primitive types | Andrew Paseltiner | -3/+19 | |
| 2013-03-04 | libsyntax: Implement `#[deriving_clone]` | Patrick Walton | -0/+8 | |
