diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2013-07-10 09:50:24 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2013-07-10 10:03:29 -0400 |
| commit | 9ee5ce221501cbafd8540586ec2904063b4448d6 (patch) | |
| tree | 52d433fc5467be9215fe527d310f9a6da7a46b53 /src/libstd/cast.rs | |
| parent | 8fa09736efcd100ec675a2fe0e29906607996485 (diff) | |
| download | rust-9ee5ce221501cbafd8540586ec2904063b4448d6.tar.gz rust-9ee5ce221501cbafd8540586ec2904063b4448d6.zip | |
Add a `mut_split()` method for dividing one `&mut [T]` into two
Diffstat (limited to 'src/libstd/cast.rs')
| -rw-r--r-- | src/libstd/cast.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/cast.rs b/src/libstd/cast.rs index 30b6b030dba..50b5b2fcd29 100644 --- a/src/libstd/cast.rs +++ b/src/libstd/cast.rs @@ -14,7 +14,6 @@ use sys; use unstable::intrinsics; /// Casts the value at `src` to U. The two types must have the same length. -/// Casts the value at `src` to U. The two types must have the same length. #[cfg(target_word_size = "32")] #[inline] pub unsafe fn transmute_copy<T, U>(src: &T) -> U { |
