Files
rust/src/libcore
Aaron Turon 4f863a338e Second pass stabilization: slice
This commit takes a second pass through the `slice` module to
stabilize its API. The changes are as follows:

**Stable**:

* `as_mut_slice`
* `as_ptr`, `as_mut_ptr`
* `binary_search_by` (was: `binary_search`)
* `binary_search` (was: `binary_search_elem`)
* `chunks`, `chunks_mut`
* `contains`
* `ends_with`
* `first`, `first_mut` (was: `head`)
* `get_unchecked`, `get_unchecked_mut` (was: `unsafe_get`)
* `get`
* `is_empty`
* `iter`, `iter_mut`
* `len`
* `reverse`
* `sort_by`
* `sort`
* `split_at`, `split_at_mut`
* `split_mut`, `splitn_mut`, `rsplitn_mut`
* `split`, `splitn`, `rsplitn`
* `starts_with`
* `swap`
* `to_vec`
* `windows`

**Deprecated**:

* `head`, `head_mut` (renamed as above)
* `unsafe_get`, `unsafe_mut` (renamed as above)
* `binary_search_elem` (renamed as above)
* `partitioned`, deprecated in favor of a new, more
  general iterator consumer called `partition`.
* `BinarySearchResult`, deprecated in favor of `Result<uint, uint>`

[breaking-change]
2014-12-30 12:02:22 -08:00
..
2014-12-30 13:06:25 +13:00
2014-12-23 13:42:09 +01:00
2014-12-05 18:13:04 -05:00
2014-12-20 00:37:44 -08:00
2014-12-26 17:26:33 +01:00
2014-12-20 00:37:44 -08:00
2014-12-29 12:20:34 -08:00
2014-12-24 12:40:42 +02:00
2014-12-22 11:28:23 -08:00
2014-12-13 17:03:46 -05:00
2014-12-26 17:26:33 +01:00
2014-12-28 19:40:48 -05:00
2014-12-28 19:40:48 -05:00
2014-12-21 23:31:42 -08:00
2014-12-29 15:57:28 -08:00
2014-12-19 10:43:23 -05:00
2014-12-19 10:43:23 -05:00
2014-12-30 12:02:22 -08:00