]> git.proxmox.com Git - rustc.git/blame - src/libcore/clone.rs
* Introduce some changes by Angus Lees
[rustc.git] / src / libcore / clone.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! The `Clone` trait for types that cannot be 'implicitly copied'
12//!
13//! In Rust, some simple types are "implicitly copyable" and when you
14//! assign them or pass them as arguments, the receiver will get a copy,
15//! leaving the original value in place. These types do not require
16//! allocation to copy and do not have finalizers (i.e. they do not
17//! contain owned boxes or implement `Drop`), so the compiler considers
18//! them cheap and safe to copy. For other types copies must be made
19//! explicitly, by convention implementing the `Clone` trait and calling
20//! the `clone` method.
21
22#![stable]
23
24use marker::Sized;
25
26/// A common trait for cloning an object.
27#[stable]
28pub trait Clone : Sized {
29 /// Returns a copy of the value.
30 #[stable]
31 fn clone(&self) -> Self;
32
33 /// Perform copy-assignment from `source`.
34 ///
35 /// `a.clone_from(&b)` is equivalent to `a = b.clone()` in functionality,
36 /// but can be overridden to reuse the resources of `a` to avoid unnecessary
37 /// allocations.
38 #[inline(always)]
39 #[unstable = "this function is rarely used"]
40 fn clone_from(&mut self, source: &Self) {
41 *self = source.clone()
42 }
43}
44
45#[stable]
46impl<'a, T: ?Sized> Clone for &'a T {
47 /// Return a shallow copy of the reference.
48 #[inline]
49 fn clone(&self) -> &'a T { *self }
50}
51
52macro_rules! clone_impl {
53 ($t:ty) => {
54 #[stable]
55 impl Clone for $t {
56 /// Return a deep copy of the value.
57 #[inline]
58 fn clone(&self) -> $t { *self }
59 }
60 }
61}
62
63clone_impl! { int }
64clone_impl! { i8 }
65clone_impl! { i16 }
66clone_impl! { i32 }
67clone_impl! { i64 }
68
69clone_impl! { uint }
70clone_impl! { u8 }
71clone_impl! { u16 }
72clone_impl! { u32 }
73clone_impl! { u64 }
74
75clone_impl! { f32 }
76clone_impl! { f64 }
77
78clone_impl! { () }
79clone_impl! { bool }
80clone_impl! { char }
81
82macro_rules! extern_fn_clone {
83 ($($A:ident),*) => (
84 #[unstable = "this may not be sufficient for fns with region parameters"]
85 impl<$($A,)* ReturnType> Clone for extern "Rust" fn($($A),*) -> ReturnType {
86 /// Return a copy of a function pointer
87 #[inline]
88 fn clone(&self) -> extern "Rust" fn($($A),*) -> ReturnType { *self }
89 }
90 )
91}
92
93extern_fn_clone! {}
94extern_fn_clone! { A }
95extern_fn_clone! { A, B }
96extern_fn_clone! { A, B, C }
97extern_fn_clone! { A, B, C, D }
98extern_fn_clone! { A, B, C, D, E }
99extern_fn_clone! { A, B, C, D, E, F }
100extern_fn_clone! { A, B, C, D, E, F, G }
101extern_fn_clone! { A, B, C, D, E, F, G, H }