rust/src/libcore/tuple.rs

73 lines
1.4 KiB
Rust
Raw Normal View History

2012-08-14 14:11:15 -05:00
// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
//! Operations on tuples
2012-03-15 20:58:14 -05:00
trait TupleOps<T,U> {
pure fn first() -> T;
pure fn second() -> U;
pure fn swap() -> (U, T);
}
2012-01-17 12:14:05 -06:00
impl<T: copy, U: copy> (T, U): TupleOps<T,U> {
/// Return the first element of self
pure fn first() -> T {
let (t, _) = self;
2012-08-01 19:30:05 -05:00
return t;
}
/// Return the second element of self
pure fn second() -> U {
let (_, u) = self;
2012-08-01 19:30:05 -05:00
return u;
}
/// Return the results of swapping the two elements of self
pure fn swap() -> (U, T) {
let (t, u) = self;
2012-08-01 19:30:05 -05:00
return (u, t);
}
2012-01-17 12:14:05 -06:00
}
trait ExtendedTupleOps<A,B> {
fn zip() -> ~[(A, B)];
fn map<C>(f: fn(A, B) -> C) -> ~[C];
}
impl<A: copy, B: copy> (&[A], &[B]): ExtendedTupleOps<A,B> {
fn zip() -> ~[(A, B)] {
let (a, b) = self;
vec::zip_slice(a, b)
}
fn map<C>(f: fn(A, B) -> C) -> ~[C] {
let (a, b) = self;
vec::map2(a, b, f)
}
}
impl<A: copy, B: copy> (~[A], ~[B]): ExtendedTupleOps<A,B> {
fn zip() -> ~[(A, B)] {
let (a, b) = self;
vec::zip(a, b)
}
fn map<C>(f: fn(A, B) -> C) -> ~[C] {
let (a, b) = self;
vec::map2(a, b, f)
}
}
2012-01-17 12:14:05 -06:00
#[test]
fn test_tuple() {
assert (948, 4039.48).first() == 948;
assert (34.5, ~"foo").second() == ~"foo";
assert ('a', 2).swap() == (2, 'a');
2012-01-17 12:14:05 -06:00
}