rust/src/libcore/either.rs

277 lines
6.8 KiB
Rust
Raw Normal View History

2012-12-10 17:44:02 -06:00
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! A type that represents one of two alternatives
use cmp::Eq;
use cmp;
use kinds::Copy;
use result::Result;
use result;
use vec;
/// The either type
2012-12-11 17:16:36 -06:00
#[deriving_eq]
2012-10-01 18:11:02 -05:00
pub enum Either<T, U> {
2012-08-14 18:54:13 -05:00
Left(T),
Right(U)
}
#[inline(always)]
pub fn either<T, U, V>(f_left: fn(&T) -> V,
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-10-01 18:11:02 -05:00
pub 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
do vec::build_sized(eithers.len()) |push| {
for vec::each(eithers) |elt| {
match *elt {
Left(ref l) => { push(*l); }
_ => { /* fallthrough */ }
}
2012-08-03 21:59:04 -05:00
}
}
}
2012-10-01 18:11:02 -05:00
pub 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
do vec::build_sized(eithers.len()) |push| {
for vec::each(eithers) |elt| {
match *elt {
Right(ref r) => { push(*r); }
_ => { /* fallthrough */ }
}
2012-08-03 21:59:04 -05:00
}
}
}
pub fn partition<T, U>(eithers: ~[Either<T, U>])
2012-11-26 22:05:19 -06:00
-> (~[T], ~[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] = ~[];
do vec::consume(eithers) |_i, elt| {
match elt {
Left(l) => lefts.push(l),
Right(r) => rights.push(r)
}
}
2013-02-15 02:51:28 -06:00
return (lefts, rights);
}
#[inline(always)]
pub pure fn flip<T, U>(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 {
Right(r) => Left(r),
Left(l) => Right(l)
}
}
#[inline(always)]
pub pure fn to_result<T, U>(eith: Either<T, U>)
2012-10-01 18:11:02 -05:00
-> 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 {
Right(r) => result::Ok(r),
Left(l) => result::Err(l)
}
}
#[inline(always)]
2012-10-01 18:11:02 -05:00
pub 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 }
}
#[inline(always)]
2012-10-01 18:11:02 -05:00
pub 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 }
}
#[inline(always)]
pub pure fn unwrap_left<T,U>(eith: Either<T,U>) -> T {
2012-08-24 20:08:02 -05:00
//! Retrieves the value in the left branch. Fails if the either is Right.
2013-02-15 02:51:28 -06:00
match eith {
Left(x) => x,
Right(_) => fail!(~"either::unwrap_left Right")
2012-08-24 20:08:02 -05:00
}
}
#[inline(always)]
pub pure fn unwrap_right<T,U>(eith: Either<T,U>) -> U {
2012-08-24 20:08:02 -05:00
//! Retrieves the value in the right branch. Fails if the either is Left.
2013-02-15 02:51:28 -06:00
match eith {
Right(x) => x,
Left(_) => fail!(~"either::unwrap_right Left")
2012-08-24 20:08:02 -05:00
}
}
pub impl<T, U> Either<T, U> {
2013-02-01 18:37:38 -06:00
#[inline(always)]
fn either<V>(&self, f_left: fn(&T) -> V, f_right: fn(&U) -> V) -> V {
either(f_left, f_right, self)
}
#[inline(always)]
fn flip(self) -> Either<U, T> { flip(self) }
#[inline(always)]
fn to_result(self) -> Result<U, T> { to_result(self) }
#[inline(always)]
fn is_left(&self) -> bool { is_left(self) }
#[inline(always)]
fn is_right(&self) -> bool { is_right(self) }
#[inline(always)]
fn unwrap_left(self) -> T { unwrap_left(self) }
#[inline(always)]
fn unwrap_right(self) -> U { unwrap_right(self) }
}
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-11-26 22:05:19 -06:00
let (lefts, rights) = partition(input);
assert (lefts[0] == 10);
assert (lefts[1] == 12);
assert (lefts[2] == 14);
assert (rights[0] == 11);
assert (rights[1] == 13);
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_partition_no_lefts() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[Right(10), Right(11)];
2012-11-26 22:05:19 -06:00
let (lefts, rights) = partition(input);
assert (vec::len(lefts) == 0u);
assert (vec::len(rights) == 2u);
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_partition_no_rights() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[Left(10), Left(11)];
2012-11-26 22:05:19 -06:00
let (lefts, rights) = partition(input);
assert (vec::len(lefts) == 2u);
assert (vec::len(rights) == 0u);
2012-01-17 19:28:21 -06:00
}
#[test]
fn test_partition_empty() {
2012-08-14 18:54:13 -05:00
let input: ~[Either<int, int>] = ~[];
2012-11-26 22:05:19 -06:00
let (lefts, rights) = partition(input);
assert (vec::len(lefts) == 0u);
assert (vec::len(rights) == 0u);
2012-01-17 19:28:21 -06:00
}
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:
//