2012-07-04 21:53:12 +00:00
|
|
|
//! Operations on tuples
|
2012-03-16 01:58:14 +00:00
|
|
|
|
2012-01-17 18:14:05 +00:00
|
|
|
|
2012-07-16 21:32:59 +00:00
|
|
|
impl extensions <T:copy, U:copy> for (T, U) {
|
|
|
|
|
|
|
|
/// Return the first element of self
|
|
|
|
pure fn first() -> T {
|
|
|
|
let (t, _) = self;
|
|
|
|
ret t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the second element of self
|
|
|
|
pure fn second() -> U {
|
|
|
|
let (_, u) = self;
|
|
|
|
ret u;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the results of swapping the two elements of self
|
|
|
|
pure fn swap() -> (U, T) {
|
|
|
|
let (t, u) = self;
|
|
|
|
ret (u, t);
|
|
|
|
}
|
2012-01-17 18:14:05 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_tuple() {
|
2012-07-16 21:32:59 +00:00
|
|
|
assert (948, 4039.48).first() == 948;
|
|
|
|
assert (34.5, ~"foo").second() == ~"foo";
|
|
|
|
assert ('a', 2).swap() == (2, 'a');
|
2012-01-17 18:14:05 +00:00
|
|
|
}
|
|
|
|
|