rust/src/liballoc
Alex Crichton ab45694198 std: Stabilize some ptr functions
Specifically, the following actions were taken:

* The `copy_memory` and `copy_nonoverlapping_memory` functions
  to drop the `_memory` suffix (as it's implied by the functionality). Both
  functions are now marked as `#[stable]`.
* The `set_memory` function was renamed to `write_bytes` and is now stable.
* The `zero_memory` function is now deprecated in favor of `write_bytes`
  directly.
* The `Unique` pointer type is now behind its own feature gate called `unique`
  to facilitate future stabilization.
* All type parameters now are `T: ?Sized` wherever possible and new clauses were
  added to the `offset` functions to require that the type is sized.

[breaking-change]
2015-02-24 14:22:33 -08:00
..
arc.rs Register new snapshots 2015-02-20 22:17:17 -08:00
boxed.rs Use boxed functions instead of transmute 2015-02-23 02:59:17 +03:00
boxed_test.rs int/uint => isize/usize in liblibc/liballoc/libarena 2015-02-09 10:00:46 +03:00
heap.rs int/uint => isize/usize in liblibc/liballoc/libarena 2015-02-09 10:00:46 +03:00
lib.rs std: Stabilize some ptr functions 2015-02-24 14:22:33 -08:00
rc.rs import boxed for alloc/rc.rs (fixup #22696) 2015-02-23 11:43:59 -08:00