rust/src/libcore/either.rs

214 lines
5.1 KiB
Rust
Raw Normal View History

// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];
//! A type that represents one of two alternatives
import result::result;
/// The either type
2012-08-14 18:54:13 -05:00
enum Either<T, U> {
Left(T),
Right(U)
}
fn either<T, U, V>(f_left: fn((&T)) -> V,
2012-08-14 18:54:13 -05:00
f_right: fn((&U)) -> V, value: &Either<T, U>) -> V {
/*!
* Applies a function based on the given either value
*
* If `value` is left(T) then `f_left` is applied to its contents, if
* `value` is right(U) then `f_right` is applied to its contents, and the
* result is returned.
*/
match *value {
2012-08-14 18:54:13 -05:00
Left(ref l) => f_left(l),
Right(ref r) => f_right(r)
2012-08-03 21:59:04 -05:00
}
}
2012-08-14 18:54:13 -05:00
fn lefts<T: copy, U>(eithers: &[Either<T, U>]) -> ~[T] {
//! Extracts from a vector of either all the left values
2012-03-06 21:09:32 -06:00
let mut result: ~[T] = ~[];
2012-06-30 18:19:07 -05:00
for vec::each(eithers) |elt| {
2012-08-06 14:34:08 -05:00
match elt {
2012-08-14 18:54:13 -05:00
Left(l) => vec::push(result, l),
2012-08-03 21:59:04 -05:00
_ => { /* fallthrough */ }
}
}
2012-08-01 19:30:05 -05:00
return result;
}
2012-08-14 18:54:13 -05:00
fn rights<T, U: copy>(eithers: &[Either<T, U>]) -> ~[U] {
//! Extracts from a vector of either all the right values
2012-03-06 21:09:32 -06:00
let mut result: ~[U] = ~[];
2012-06-30 18:19:07 -05:00
for vec::each(eithers) |elt| {
2012-08-06 14:34:08 -05:00
match elt {
2012-08-14 18:54:13 -05:00
Right(r) => vec::push(result, r),
2012-08-03 21:59:04 -05:00
_ => { /* fallthrough */ }
}
}
2012-08-01 19:30:05 -05:00
return result;
}
2012-08-14 18:54:13 -05:00
fn partition<T: copy, U: copy>(eithers: &[Either<T, U>])
-> {lefts: ~[T], rights: ~[U]} {
/*!
* Extracts from a vector of either all the left values and right values
*
* Returns a structure containing a vector of left values and a vector of
* right values.
*/
2012-03-06 21:09:32 -06:00
let mut lefts: ~[T] = ~[];
let mut rights: ~[U] = ~[];
2012-06-30 18:19:07 -05:00
for vec::each(eithers) |elt| {
2012-08-06 14:34:08 -05:00
match elt {
2012-08-14 18:54:13 -05:00
Left(l) => vec::push(lefts, l),
Right(r) => vec::push(rights, r)
}
}
2012-08-01 19:30:05 -05:00
return {lefts: lefts, rights: rights};
}
2012-08-14 18:54:13 -05:00
pure fn flip<T: copy, U: copy>(eith: &Either<T, U>) -> Either<U, T> {
//! Flips between left and right of a given either
2012-03-06 21:09:32 -06:00
match *eith {
2012-08-14 18:54:13 -05:00
Right(r) => Left(r),
Left(l) => Right(l)
}
}
2012-08-14 18:54:13 -05:00
pure fn to_result<T: copy, U: copy>(eith: &Either<T, U>) -> result<U, T> {
/*!
* Converts either::t to a result::t
*
* Converts an `either` type to a `result` type, making the "right" choice
* an ok result, and the "left" choice a fail
*/
2012-03-06 21:09:32 -06:00
match *eith {
2012-08-14 18:54:13 -05:00
Right(r) => result::ok(r),
Left(l) => result::err(l)
}
}
2012-08-14 18:54:13 -05:00
pure fn is_left<T, U>(eith: &Either<T, U>) -> bool {
//! Checks whether the given value is a left
2012-03-06 21:09:32 -06:00
2012-08-14 18:54:13 -05:00
match *eith { Left(_) => true, _ => false }
}
2012-08-14 18:54:13 -05:00
pure fn is_right<T, U>(eith: &Either<T, U>) -> bool {
//! Checks whether the given value is a right
2012-03-06 21:09:32 -06:00
2012-08-14 18:54:13 -05:00
match *eith { Right(_) => true, _ => false }
}
2012-01-17 19:28:21 -06:00
#[test]
fn test_either_left() {
2012-08-14 18:54:13 -05:00
let val = Left(10);
fn f_left(x: &int) -> bool { *x == 10 }
fn f_right(_x: &uint) -> bool { false }
assert (either(f_left, f_right, &val));
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_either_right() {
2012-08-14 18:54:13 -05:00
let val = Right(10u);
fn f_left(_x: &int) -> bool { false }
fn f_right(x: &uint) -> bool { *x == 10u }
assert (either(f_left, f_right, &val));
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_lefts() {
2012-08-14 18:54:13 -05:00
let input = ~[Left(10), Right(11), Left(12), Right(13), Left(14)];
2012-01-17 19:28:21 -06:00
let result = lefts(input);
assert (result == ~[10, 12, 14]);
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_lefts_none() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[Right(10), Right(10)];
2012-01-17 19:28:21 -06:00
let result = lefts(input);
assert (vec::len(result) == 0u);
}
#[test]
fn test_lefts_empty() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[];
2012-01-17 19:28:21 -06:00
let result = lefts(input);
assert (vec::len(result) == 0u);
}
#[test]
fn test_rights() {
2012-08-14 18:54:13 -05:00
let input = ~[Left(10), Right(11), Left(12), Right(13), Left(14)];
2012-01-17 19:28:21 -06:00
let result = rights(input);
assert (result == ~[11, 13]);
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_rights_none() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[Left(10), Left(10)];
2012-01-17 19:28:21 -06:00
let result = rights(input);
assert (vec::len(result) == 0u);
}
#[test]
fn test_rights_empty() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[];
2012-01-17 19:28:21 -06:00
let result = rights(input);
assert (vec::len(result) == 0u);
}
#[test]
fn test_partition() {
2012-08-14 18:54:13 -05:00
let input = ~[Left(10), Right(11), Left(12), Right(13), Left(14)];
2012-01-17 19:28:21 -06:00
let result = partition(input);
assert (result.lefts[0] == 10);
assert (result.lefts[1] == 12);
assert (result.lefts[2] == 14);
assert (result.rights[0] == 11);
assert (result.rights[1] == 13);
}
#[test]
fn test_partition_no_lefts() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[Right(10), Right(11)];
2012-01-17 19:28:21 -06:00
let result = partition(input);
assert (vec::len(result.lefts) == 0u);
assert (vec::len(result.rights) == 2u);
}
#[test]
fn test_partition_no_rights() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[Left(10), Left(11)];
2012-01-17 19:28:21 -06:00
let result = partition(input);
assert (vec::len(result.lefts) == 2u);
assert (vec::len(result.rights) == 0u);
}
#[test]
fn test_partition_empty() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[];
2012-01-17 19:28:21 -06:00
let result = partition(input);
assert (vec::len(result.lefts) == 0u);
assert (vec::len(result.rights) == 0u);
}
2012-03-06 21:09:32 -06:00
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
//