std: Replace CloneableTuple with Tuple, which takes self by-val.

The old behaviour of `foo.n0()` is replaced by `foo.n0_ref().clone()`.
This commit is contained in:
Huon Wilson 2013-09-25 19:00:08 +10:00
parent 6ed338caa7
commit 04ca6dcd84
2 changed files with 104 additions and 102 deletions

View File

@ -72,10 +72,10 @@ pub use from_str::FromStr;
pub use to_bytes::IterBytes; pub use to_bytes::IterBytes;
pub use to_str::{ToStr, ToStrConsume}; pub use to_str::{ToStr, ToStrConsume};
pub use tuple::{CopyableTuple, ImmutableTuple}; pub use tuple::{CopyableTuple, ImmutableTuple};
pub use tuple::{CloneableTuple1, ImmutableTuple1}; pub use tuple::{Tuple1, ImmutableTuple1};
pub use tuple::{CloneableTuple2, CloneableTuple3, CloneableTuple4, CloneableTuple5}; pub use tuple::{Tuple2, Tuple3, Tuple4, Tuple5};
pub use tuple::{CloneableTuple6, CloneableTuple7, CloneableTuple8, CloneableTuple9}; pub use tuple::{Tuple6, Tuple7, Tuple8, Tuple9};
pub use tuple::{CloneableTuple10, CloneableTuple11, CloneableTuple12}; pub use tuple::{Tuple10, Tuple11, Tuple12};
pub use tuple::{ImmutableTuple2, ImmutableTuple3, ImmutableTuple4, ImmutableTuple5}; pub use tuple::{ImmutableTuple2, ImmutableTuple3, ImmutableTuple4, ImmutableTuple5};
pub use tuple::{ImmutableTuple6, ImmutableTuple7, ImmutableTuple8, ImmutableTuple9}; pub use tuple::{ImmutableTuple6, ImmutableTuple7, ImmutableTuple8, ImmutableTuple9};
pub use tuple::{ImmutableTuple10, ImmutableTuple11, ImmutableTuple12}; pub use tuple::{ImmutableTuple10, ImmutableTuple11, ImmutableTuple12};

View File

@ -80,9 +80,9 @@ impl<T, U> ImmutableTuple<T, U> for (T, U) {
macro_rules! tuple_impls { macro_rules! tuple_impls {
($( ($(
($cloneable_trait:ident, $immutable_trait:ident) { ($move_trait:ident, $immutable_trait:ident) {
$(($get_fn:ident, $get_ref_fn:ident) -> $T:ident { $(($get_fn:ident, $get_ref_fn:ident) -> $T:ident {
$get_pattern:pat => $ret:expr $move_pattern:pat, $ref_pattern:pat => $ret:expr
})+ })+
} }
)+) => { )+) => {
@ -93,15 +93,16 @@ macro_rules! tuple_impls {
#[cfg(not(test))] use num::Zero; #[cfg(not(test))] use num::Zero;
$( $(
pub trait $cloneable_trait<$($T),+> { pub trait $move_trait<$($T),+> {
$(fn $get_fn(&self) -> $T;)+ $(fn $get_fn(self) -> $T;)+
} }
impl<$($T:Clone),+> $cloneable_trait<$($T),+> for ($($T,)+) { impl<$($T),+> $move_trait<$($T),+> for ($($T,)+) {
$( $(
#[inline] #[inline]
fn $get_fn(&self) -> $T { fn $get_fn(self) -> $T {
self.$get_ref_fn().clone() let $move_pattern = self;
$ret
} }
)+ )+
} }
@ -114,7 +115,8 @@ macro_rules! tuple_impls {
$( $(
#[inline] #[inline]
fn $get_ref_fn<'a>(&'a self) -> &'a $T { fn $get_ref_fn<'a>(&'a self) -> &'a $T {
match *self { $get_pattern => $ret } let $ref_pattern = *self;
$ret
} }
)+ )+
} }
@ -221,118 +223,118 @@ macro_rules! lexical_cmp {
tuple_impls! { tuple_impls! {
(CloneableTuple1, ImmutableTuple1) { (Tuple1, ImmutableTuple1) {
(n0, n0_ref) -> A { (ref a,) => a } (n0, n0_ref) -> A { (a,), (ref a,) => a }
} }
(CloneableTuple2, ImmutableTuple2) { (Tuple2, ImmutableTuple2) {
(n0, n0_ref) -> A { (ref a,_) => a } (n0, n0_ref) -> A { (a,_), (ref a,_) => a }
(n1, n1_ref) -> B { (_,ref b) => b } (n1, n1_ref) -> B { (_,b), (_,ref b) => b }
} }
(CloneableTuple3, ImmutableTuple3) { (Tuple3, ImmutableTuple3) {
(n0, n0_ref) -> A { (ref a,_,_) => a } (n0, n0_ref) -> A { (a,_,_), (ref a,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_) => b } (n1, n1_ref) -> B { (_,b,_), (_,ref b,_) => b }
(n2, n2_ref) -> C { (_,_,ref c) => c } (n2, n2_ref) -> C { (_,_,c), (_,_,ref c) => c }
} }
(CloneableTuple4, ImmutableTuple4) { (Tuple4, ImmutableTuple4) {
(n0, n0_ref) -> A { (ref a,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_), (ref a,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_), (_,ref b,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_) => c } (n2, n2_ref) -> C { (_,_,c,_), (_,_,ref c,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d) => d } (n3, n3_ref) -> D { (_,_,_,d), (_,_,_,ref d) => d }
} }
(CloneableTuple5, ImmutableTuple5) { (Tuple5, ImmutableTuple5) {
(n0, n0_ref) -> A { (ref a,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_), (ref a,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_), (_,ref b,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_), (_,_,ref c,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_), (_,_,_,ref d,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e) => e } (n4, n4_ref) -> E { (_,_,_,_,e), (_,_,_,_,ref e) => e }
} }
(CloneableTuple6, ImmutableTuple6) { (Tuple6, ImmutableTuple6) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_), (ref a,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_), (_,ref b,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_), (_,_,ref c,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_), (_,_,_,ref d,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_), (_,_,_,_,ref e,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f), (_,_,_,_,_,ref f) => f }
} }
(CloneableTuple7, ImmutableTuple7) { (Tuple7, ImmutableTuple7) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_,_), (ref a,_,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_,_), (_,ref b,_,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_,_), (_,_,ref c,_,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_,_), (_,_,_,ref d,_,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_,_), (_,_,_,_,ref e,_,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f,_) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f,_), (_,_,_,_,_,ref f,_) => f }
(n6, n6_ref) -> G { (_,_,_,_,_,_,ref g) => g } (n6, n6_ref) -> G { (_,_,_,_,_,_,g), (_,_,_,_,_,_,ref g) => g }
} }
(CloneableTuple8, ImmutableTuple8) { (Tuple8, ImmutableTuple8) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_,_,_), (ref a,_,_,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_,_,_), (_,ref b,_,_,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_,_,_), (_,_,ref c,_,_,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_,_,_), (_,_,_,ref d,_,_,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_,_,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_,_,_), (_,_,_,_,ref e,_,_,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f,_,_) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f,_,_), (_,_,_,_,_,ref f,_,_) => f }
(n6, n6_ref) -> G { (_,_,_,_,_,_,ref g,_) => g } (n6, n6_ref) -> G { (_,_,_,_,_,_,g,_), (_,_,_,_,_,_,ref g,_) => g }
(n7, n7_ref) -> H { (_,_,_,_,_,_,_,ref h) => h } (n7, n7_ref) -> H { (_,_,_,_,_,_,_,h), (_,_,_,_,_,_,_,ref h) => h }
} }
(CloneableTuple9, ImmutableTuple9) { (Tuple9, ImmutableTuple9) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_,_,_,_), (ref a,_,_,_,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_,_,_,_), (_,ref b,_,_,_,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_,_,_,_), (_,_,ref c,_,_,_,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_,_,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_,_,_,_), (_,_,_,ref d,_,_,_,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_,_,_,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_,_,_,_), (_,_,_,_,ref e,_,_,_,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f,_,_,_) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f,_,_,_), (_,_,_,_,_,ref f,_,_,_) => f }
(n6, n6_ref) -> G { (_,_,_,_,_,_,ref g,_,_) => g } (n6, n6_ref) -> G { (_,_,_,_,_,_,g,_,_), (_,_,_,_,_,_,ref g,_,_) => g }
(n7, n7_ref) -> H { (_,_,_,_,_,_,_,ref h,_) => h } (n7, n7_ref) -> H { (_,_,_,_,_,_,_,h,_), (_,_,_,_,_,_,_,ref h,_) => h }
(n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,ref i) => i } (n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,i), (_,_,_,_,_,_,_,_,ref i) => i }
} }
(CloneableTuple10, ImmutableTuple10) { (Tuple10, ImmutableTuple10) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_,_,_,_,_), (ref a,_,_,_,_,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_,_,_,_,_), (_,ref b,_,_,_,_,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_,_,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_,_,_,_,_), (_,_,ref c,_,_,_,_,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_,_,_,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_,_,_,_,_), (_,_,_,ref d,_,_,_,_,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_,_,_,_,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_,_,_,_,_), (_,_,_,_,ref e,_,_,_,_,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f,_,_,_,_) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f,_,_,_,_), (_,_,_,_,_,ref f,_,_,_,_) => f }
(n6, n6_ref) -> G { (_,_,_,_,_,_,ref g,_,_,_) => g } (n6, n6_ref) -> G { (_,_,_,_,_,_,g,_,_,_), (_,_,_,_,_,_,ref g,_,_,_) => g }
(n7, n7_ref) -> H { (_,_,_,_,_,_,_,ref h,_,_) => h } (n7, n7_ref) -> H { (_,_,_,_,_,_,_,h,_,_), (_,_,_,_,_,_,_,ref h,_,_) => h }
(n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,ref i,_) => i } (n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,i,_), (_,_,_,_,_,_,_,_,ref i,_) => i }
(n9, n9_ref) -> J { (_,_,_,_,_,_,_,_,_,ref j) => j } (n9, n9_ref) -> J { (_,_,_,_,_,_,_,_,_,j), (_,_,_,_,_,_,_,_,_,ref j) => j }
} }
(CloneableTuple11, ImmutableTuple11) { (Tuple11, ImmutableTuple11) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_,_,_,_,_,_), (ref a,_,_,_,_,_,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_,_,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_,_,_,_,_,_), (_,ref b,_,_,_,_,_,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_,_,_,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_,_,_,_,_,_), (_,_,ref c,_,_,_,_,_,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_,_,_,_,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_,_,_,_,_,_), (_,_,_,ref d,_,_,_,_,_,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_,_,_,_,_,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_,_,_,_,_,_), (_,_,_,_,ref e,_,_,_,_,_,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f,_,_,_,_,_) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f,_,_,_,_,_), (_,_,_,_,_,ref f,_,_,_,_,_) => f }
(n6, n6_ref) -> G { (_,_,_,_,_,_,ref g,_,_,_,_) => g } (n6, n6_ref) -> G { (_,_,_,_,_,_,g,_,_,_,_), (_,_,_,_,_,_,ref g,_,_,_,_) => g }
(n7, n7_ref) -> H { (_,_,_,_,_,_,_,ref h,_,_,_) => h } (n7, n7_ref) -> H { (_,_,_,_,_,_,_,h,_,_,_), (_,_,_,_,_,_,_,ref h,_,_,_) => h }
(n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,ref i,_,_) => i } (n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,i,_,_), (_,_,_,_,_,_,_,_,ref i,_,_) => i }
(n9, n9_ref) -> J { (_,_,_,_,_,_,_,_,_,ref j,_) => j } (n9, n9_ref) -> J { (_,_,_,_,_,_,_,_,_,j,_), (_,_,_,_,_,_,_,_,_,ref j,_) => j }
(n10, n10_ref) -> K { (_,_,_,_,_,_,_,_,_,_,ref k) => k } (n10, n10_ref) -> K { (_,_,_,_,_,_,_,_,_,_,k), (_,_,_,_,_,_,_,_,_,_,ref k) => k }
} }
(CloneableTuple12, ImmutableTuple12) { (Tuple12, ImmutableTuple12) {
(n0, n0_ref) -> A { (ref a,_,_,_,_,_,_,_,_,_,_,_) => a } (n0, n0_ref) -> A { (a,_,_,_,_,_,_,_,_,_,_,_), (ref a,_,_,_,_,_,_,_,_,_,_,_) => a }
(n1, n1_ref) -> B { (_,ref b,_,_,_,_,_,_,_,_,_,_) => b } (n1, n1_ref) -> B { (_,b,_,_,_,_,_,_,_,_,_,_), (_,ref b,_,_,_,_,_,_,_,_,_,_) => b }
(n2, n2_ref) -> C { (_,_,ref c,_,_,_,_,_,_,_,_,_) => c } (n2, n2_ref) -> C { (_,_,c,_,_,_,_,_,_,_,_,_), (_,_,ref c,_,_,_,_,_,_,_,_,_) => c }
(n3, n3_ref) -> D { (_,_,_,ref d,_,_,_,_,_,_,_,_) => d } (n3, n3_ref) -> D { (_,_,_,d,_,_,_,_,_,_,_,_), (_,_,_,ref d,_,_,_,_,_,_,_,_) => d }
(n4, n4_ref) -> E { (_,_,_,_,ref e,_,_,_,_,_,_,_) => e } (n4, n4_ref) -> E { (_,_,_,_,e,_,_,_,_,_,_,_), (_,_,_,_,ref e,_,_,_,_,_,_,_) => e }
(n5, n5_ref) -> F { (_,_,_,_,_,ref f,_,_,_,_,_,_) => f } (n5, n5_ref) -> F { (_,_,_,_,_,f,_,_,_,_,_,_), (_,_,_,_,_,ref f,_,_,_,_,_,_) => f }
(n6, n6_ref) -> G { (_,_,_,_,_,_,ref g,_,_,_,_,_) => g } (n6, n6_ref) -> G { (_,_,_,_,_,_,g,_,_,_,_,_), (_,_,_,_,_,_,ref g,_,_,_,_,_) => g }
(n7, n7_ref) -> H { (_,_,_,_,_,_,_,ref h,_,_,_,_) => h } (n7, n7_ref) -> H { (_,_,_,_,_,_,_,h,_,_,_,_), (_,_,_,_,_,_,_,ref h,_,_,_,_) => h }
(n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,ref i,_,_,_) => i } (n8, n8_ref) -> I { (_,_,_,_,_,_,_,_,i,_,_,_), (_,_,_,_,_,_,_,_,ref i,_,_,_) => i }
(n9, n9_ref) -> J { (_,_,_,_,_,_,_,_,_,ref j,_,_) => j } (n9, n9_ref) -> J { (_,_,_,_,_,_,_,_,_,j,_,_), (_,_,_,_,_,_,_,_,_,ref j,_,_) => j }
(n10, n10_ref) -> K { (_,_,_,_,_,_,_,_,_,_,ref k,_) => k } (n10, n10_ref) -> K { (_,_,_,_,_,_,_,_,_,_,k,_), (_,_,_,_,_,_,_,_,_,_,ref k,_) => k }
(n11, n11_ref) -> L { (_,_,_,_,_,_,_,_,_,_,_,ref l) => l } (n11, n11_ref) -> L { (_,_,_,_,_,_,_,_,_,_,_,l), (_,_,_,_,_,_,_,_,_,_,_,ref l) => l }
} }
} }