rust/src/libstd/either.rs

259 lines
6.5 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
#[allow(missing_doc)];
use container::Container;
use cmp::Eq;
use kinds::Copy;
use iterator::IteratorUtil;
use result::Result;
use result;
use vec;
use vec::{OwnedVector, ImmutableVector};
/// The either type
2013-03-22 14:33:53 -05:00
#[deriving(Clone, 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)
}
/// 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.
#[inline]
pub fn either<T, U, V>(f_left: &fn(&T) -> V,
f_right: &fn(&U) -> V, value: &Either<T, U>) -> V {
match *value {
Left(ref l) => f_left(l),
Right(ref r) => f_right(r)
2012-08-03 21:59:04 -05:00
}
}
/// Extracts from a vector of either all the left values
pub fn lefts<T:Copy,U>(eithers: &[Either<T, U>]) -> ~[T] {
do vec::build_sized(eithers.len()) |push| {
for eithers.iter().advance |elt| {
match *elt {
Left(ref l) => { push(copy *l); }
_ => { /* fallthrough */ }
}
2012-08-03 21:59:04 -05:00
}
}
}
/// Extracts from a vector of either all the right values
2012-10-01 18:11:02 -05:00
pub fn rights<T, U: Copy>(eithers: &[Either<T, U>]) -> ~[U] {
do vec::build_sized(eithers.len()) |push| {
for eithers.iter().advance |elt| {
match *elt {
Right(ref r) => { push(copy *r); }
_ => { /* fallthrough */ }
}
2012-08-03 21:59:04 -05:00
}
}
}
/// 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.
pub fn partition<T, U>(eithers: ~[Either<T, U>]) -> (~[T], ~[U]) {
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);
}
/// Flips between left and right of a given either
#[inline]
pub fn flip<T, U>(eith: Either<T, U>) -> Either<U, T> {
match eith {
Right(r) => Left(r),
Left(l) => Right(l)
}
}
/// 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
#[inline]
pub fn to_result<T, U>(eith: Either<T, U>) -> Result<U, T> {
match eith {
Right(r) => result::Ok(r),
Left(l) => result::Err(l)
}
}
/// Checks whether the given value is a left
#[inline]
pub fn is_left<T, U>(eith: &Either<T, U>) -> bool {
match *eith {
Left(_) => true,
_ => false
}
}
/// Checks whether the given value is a right
#[inline]
pub fn is_right<T, U>(eith: &Either<T, U>) -> bool {
match *eith {
Right(_) => true,
_ => false
}
}
/// Retrieves the value in the left branch. Fails if the either is Right.
#[inline]
pub fn unwrap_left<T,U>(eith: Either<T,U>) -> T {
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
}
}
/// Retrieves the value in the right branch. Fails if the either is Left.
#[inline]
pub fn unwrap_right<T,U>(eith: Either<T,U>) -> U {
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
}
}
impl<T, U> Either<T, U> {
#[inline]
pub fn either<V>(&self, f_left: &fn(&T) -> V, f_right: &fn(&U) -> V) -> V {
2013-02-01 18:37:38 -06:00
either(f_left, f_right, self)
}
#[inline]
pub fn flip(self) -> Either<U, T> { flip(self) }
2013-02-01 18:37:38 -06:00
#[inline]
pub fn to_result(self) -> Result<U, T> { to_result(self) }
2013-02-01 18:37:38 -06:00
#[inline]
pub fn is_left(&self) -> bool { is_left(self) }
2013-02-01 18:37:38 -06:00
#[inline]
pub fn is_right(&self) -> bool { is_right(self) }
2013-02-01 18:37:38 -06:00
#[inline]
pub fn unwrap_left(self) -> T { unwrap_left(self) }
#[inline]
pub 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 }
2013-03-28 20:39:09 -05:00
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 }
2013-03-28 20:39:09 -05:00
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_eq!(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);
2013-05-14 04:52:12 -05:00
assert_eq!(result.len(), 0u);
2012-01-17 19:28:21 -06:00
}
#[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);
2013-05-14 04:52:12 -05:00
assert_eq!(result.len(), 0u);
2012-01-17 19:28:21 -06:00
}
#[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_eq!(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);
2013-05-14 04:52:12 -05:00
assert_eq!(result.len(), 0u);
2012-01-17 19:28:21 -06:00
}
#[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);
2013-05-14 04:52:12 -05:00
assert_eq!(result.len(), 0u);
2012-01-17 19:28:21 -06:00
}
#[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_eq!(lefts[0], 10);
assert_eq!(lefts[1], 12);
assert_eq!(lefts[2], 14);
assert_eq!(rights[0], 11);
assert_eq!(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);
2013-05-14 04:52:12 -05:00
assert_eq!(lefts.len(), 0u);
assert_eq!(rights.len(), 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);
2013-05-14 04:52:12 -05:00
assert_eq!(lefts.len(), 2u);
assert_eq!(rights.len(), 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);
2013-05-14 04:52:12 -05:00
assert_eq!(lefts.len(), 0u);
assert_eq!(rights.len(), 0u);
2012-01-17 19:28:21 -06:00
}