| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-03-04 | std: add reserve_additional and an Extendable impl to Vec. | Huon Wilson | -2/+66 | |
| 2014-03-01 | libsyntax: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -0/+27 | |
| 2014-03-01 | libstd: Add some functionality to `Vec<T>` | Patrick Walton | -1/+29 | |
| 2014-02-24 | std: Add Vec.reserve for rounding-up reservation. | Huon Wilson | -1/+8 | |
| `.reserve_exact` can cause pathological O(n^2) behaviour, so providing a `.reserve` that ensures that capacity doubles (if you step 1, 2, ..., n) is more efficient. cc #11949 | ||||
| 2014-02-24 | std: make .swap_remove return Option<T>. | Huon Wilson | -6/+4 | |
| This is one of the last raw "indexing" method on vectors that returns `T` instead of the Option. | ||||
| 2014-02-23 | std: Move raw to std::raw | Brian Anderson | -1/+1 | |
| Issue #1457 | ||||
| 2014-02-21 | libstd: Implement some convenience methods on vectors | Patrick Walton | -9/+169 | |
| 2014-02-15 | std: clean up ptr a bit | Corey Richardson | -6/+6 | |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, ↵ | JeremyLetang | -2/+3 | |
| mut_offset) | ||||
| 2014-02-09 | std: Add move_val_init to mem. Replace direct intrinsic usage | Brian Anderson | -2/+1 | |
| 2014-02-07 | Removed prelude::* from libstd files. | chromatic | -2/+6 | |
| This replaces the imports from the prelude with the re-exported symbols. | ||||
| 2014-01-22 | add new vector representation as a library | Daniel Micay | -0/+231 | |
