2013-10-31 17:09:24 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
// 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.
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
//! A type representing either success or failure
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
use any::Any;
|
2013-07-02 14:47:32 -05:00
|
|
|
use clone::Clone;
|
2012-09-04 13:12:17 -05:00
|
|
|
use cmp::Eq;
|
2013-10-31 17:09:24 -05:00
|
|
|
use fmt;
|
2013-09-08 10:01:16 -05:00
|
|
|
use iter::Iterator;
|
2013-10-31 17:09:24 -05:00
|
|
|
use kinds::Send;
|
2013-08-03 12:40:20 -05:00
|
|
|
use option::{None, Option, Some, OptionIterator};
|
2013-11-01 06:25:36 -05:00
|
|
|
use option::{ToOption, IntoOption, AsOption};
|
|
|
|
use str::OwnedStr;
|
2013-08-03 18:59:24 -05:00
|
|
|
use to_str::ToStr;
|
2013-10-31 17:09:24 -05:00
|
|
|
use vec::OwnedVector;
|
|
|
|
use vec;
|
2013-08-03 18:59:24 -05:00
|
|
|
|
|
|
|
/// `Result` is a type that represents either success (`Ok`) or failure (`Err`).
|
|
|
|
///
|
2013-08-16 00:41:28 -05:00
|
|
|
/// In order to provide informative error messages, `E` is required to implement `ToStr`.
|
2013-08-03 18:59:24 -05:00
|
|
|
/// It is further recommended for `E` to be a descriptive error type, eg a `enum` for
|
|
|
|
/// all possible errors cases.
|
2013-11-01 06:25:36 -05:00
|
|
|
#[deriving(Clone, DeepClone, Eq, Ord, TotalEq, TotalOrd, ToStr)]
|
2013-08-03 18:59:24 -05:00
|
|
|
pub enum Result<T, E> {
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Contains the successful result value
|
2012-08-26 18:54:31 -05:00
|
|
|
Ok(T),
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Contains the error value
|
2013-08-03 18:59:24 -05:00
|
|
|
Err(E)
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Type implementation
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
impl<T, E: ToStr> Result<T, E> {
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Querying the contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2013-04-10 15:11:35 -05:00
|
|
|
|
2013-07-24 22:41:13 -05:00
|
|
|
/// Returns true if the result is `Ok`
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:44 -05:00
|
|
|
pub fn is_ok(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Ok(_) => true,
|
|
|
|
Err(_) => false
|
|
|
|
}
|
|
|
|
}
|
2012-04-01 17:44:01 -05:00
|
|
|
|
2013-07-24 22:41:13 -05:00
|
|
|
/// Returns true if the result is `Err`
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:44 -05:00
|
|
|
pub fn is_err(&self) -> bool {
|
|
|
|
!self.is_ok()
|
|
|
|
}
|
2012-04-01 17:44:01 -05:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Adapter for working with references
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Convert from `Result<T, E>` to `Result<&T, &E>`
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn as_ref<'r>(&'r self) -> Result<&'r T, &'r E> {
|
2013-07-26 20:03:44 -05:00
|
|
|
match *self {
|
2013-10-31 17:09:24 -05:00
|
|
|
Ok(ref x) => Ok(x),
|
|
|
|
Err(ref x) => Err(x),
|
|
|
|
}
|
2013-07-26 20:03:44 -05:00
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Convert from `Result<T, E>` to `Result<&mut T, &mut E>`
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn as_mut<'r>(&'r mut self) -> Result<&'r mut T, &'r mut E> {
|
2013-07-26 20:03:44 -05:00
|
|
|
match *self {
|
2013-10-31 17:09:24 -05:00
|
|
|
Ok(ref mut x) => Ok(x),
|
|
|
|
Err(ref mut x) => Err(x),
|
|
|
|
}
|
2013-07-26 20:03:44 -05:00
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Getting to contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Unwraps a result, yielding the content of an `Ok`.
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Fails if the value is a `Err` with a custom failure message provided by `msg`.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn expect<M: Any + Send>(self, msg: M) -> T {
|
2013-07-26 20:03:57 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2013-10-31 17:09:24 -05:00
|
|
|
Err(_) => fail!(msg),
|
2013-07-26 20:03:57 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Unwraps a result, yielding the content of an `Err`.
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Fails if the value is a `Ok` with a custom failure message provided by `msg`.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn expect_err<M: Any + Send>(self, msg: M) -> E {
|
|
|
|
match self {
|
|
|
|
Err(e) => e,
|
|
|
|
Ok(_) => fail!(msg),
|
|
|
|
}
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Unwraps a result, yielding the content of an `Ok`.
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Fails if the value is a `Err` with an error message derived
|
|
|
|
/// from `E`'s `ToStr` implementation.
|
2013-08-03 18:59:24 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn unwrap(self) -> T {
|
2013-08-03 18:59:24 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2013-10-31 17:09:24 -05:00
|
|
|
Err(e) => fail!("called `Result::unwrap()` on `Err` value '{}'",
|
|
|
|
e.to_str()),
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Unwraps a result, yielding the content of an `Err`.
|
|
|
|
/// Fails if the value is a `Ok`.
|
2013-08-03 18:59:24 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn unwrap_err(self) -> E {
|
2013-07-26 20:03:57 -05:00
|
|
|
match self {
|
2013-10-31 17:09:24 -05:00
|
|
|
Ok(_) => fail!("called `Result::unwrap_err()` on an `Ok` value"),
|
|
|
|
Err(e) => e
|
2013-07-26 20:03:57 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Transforming contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Maps an `Result<T, E>` to `Result<U, E>` by applying a function to an
|
|
|
|
/// contained `Ok` value, leaving an `Err` value untouched.
|
2013-08-04 18:05:25 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// This function can be used to compose the results of two functions.
|
2013-08-04 18:05:25 -05:00
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
2013-11-21 19:23:21 -06:00
|
|
|
/// let res = read_file(file).map(|buf| {
|
2013-08-04 18:05:25 -05:00
|
|
|
/// parse_bytes(buf)
|
2013-11-21 19:23:21 -06:00
|
|
|
/// })
|
2013-08-04 18:05:25 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn map<U>(self, op: |T| -> U) -> Result<U,E> {
|
2013-08-04 18:05:25 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(op(t)),
|
|
|
|
Err(e) => Err(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Maps an `Result<T, E>` to `Result<T, F>` by applying a function to an
|
|
|
|
/// contained `Err` value, leaving an `Ok` value untouched.
|
2013-08-04 18:05:25 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// This function can be used to pass through a successful result while handling
|
|
|
|
/// an error.
|
2013-08-04 18:05:25 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn map_err<F>(self, op: |E| -> F) -> Result<T,F> {
|
2013-08-04 18:05:25 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(t),
|
|
|
|
Err(e) => Err(op(e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Iterator constructors
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Returns an `Iterator` over one or zero references to the value of an `Ok`
|
2013-09-11 14:52:17 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// for buf in read_file(file) {
|
|
|
|
/// print_buf(buf)
|
|
|
|
/// }
|
2013-09-11 14:52:17 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn iter<'r>(&'r self) -> OptionIterator<&'r T> {
|
|
|
|
match *self {
|
|
|
|
Ok(ref t) => Some(t),
|
2013-11-28 14:22:53 -06:00
|
|
|
Err(..) => None,
|
2013-10-31 17:09:24 -05:00
|
|
|
}.move_iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns an `Iterator` over one or zero references to the value of an `Err`
|
|
|
|
#[inline]
|
|
|
|
pub fn iter_err<'r>(&'r self) -> OptionIterator<&'r E> {
|
|
|
|
match *self {
|
2013-11-28 14:22:53 -06:00
|
|
|
Ok(..) => None,
|
2013-10-31 17:09:24 -05:00
|
|
|
Err(ref t) => Some(t),
|
|
|
|
}.move_iter()
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Boolean operations on the values, eager and lazy
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Returns `res` if the result is `Ok`, otherwise returns the `Err` value of `self`.
|
|
|
|
#[inline]
|
|
|
|
pub fn and<U>(self, res: Result<U, E>) -> Result<U, E> {
|
2013-09-11 14:52:17 -05:00
|
|
|
match self {
|
|
|
|
Ok(_) => res,
|
2013-10-31 17:09:24 -05:00
|
|
|
Err(e) => Err(e),
|
2013-09-11 14:52:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Calls `op` if the result is `Ok`, otherwise returns the `Err` value of `self`.
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// This function can be used for control flow based on result values
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn and_then<U>(self, op: |T| -> Result<U, E>) -> Result<U, E> {
|
2013-07-22 19:27:53 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => op(t),
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => Err(e),
|
2013-07-22 19:27:53 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Returns `res` if the result is `Err`, otherwise returns the `Ok` value of `self`.
|
2013-09-11 14:52:17 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn or(self, res: Result<T, E>) -> Result<T, E> {
|
|
|
|
match self {
|
|
|
|
Ok(_) => self,
|
|
|
|
Err(_) => res,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Calls `op` if the result is `Err`, otherwise returns the `Ok` value of `self`.
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// This function can be used for control flow based on result values
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn or_else<F>(self, op: |E| -> Result<T, F>) -> Result<T, F> {
|
2013-07-22 19:27:53 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(t),
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => op(e),
|
2013-07-22 19:27:53 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
2012-06-22 19:32:52 -05:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Common special cases
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2012-06-22 19:32:52 -05:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Get a reference to the value out of a successful result
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// # Failure
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
2013-10-31 17:09:24 -05:00
|
|
|
/// If the result is an error
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn get_ref<'a>(&'a self) -> &'a T {
|
2013-07-22 20:41:53 -05:00
|
|
|
match *self {
|
2013-10-31 17:09:24 -05:00
|
|
|
Ok(ref t) => t,
|
|
|
|
Err(ref e) => fail!("called `Result::get_ref()` on `Err` value '{}'",
|
|
|
|
e.to_str()),
|
2013-07-22 20:41:53 -05:00
|
|
|
}
|
|
|
|
}
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
2012-06-22 19:32:52 -05:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Constructor extension trait
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-11 11:32:09 -05:00
|
|
|
/// A generic trait for converting a value to a `Result`
|
|
|
|
pub trait ToResult<T, E> {
|
|
|
|
/// Convert to the `result` type
|
|
|
|
fn to_result(&self) -> Result<T, E>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A generic trait for converting a value to a `Result`
|
|
|
|
pub trait IntoResult<T, E> {
|
|
|
|
/// Convert to the `result` type
|
|
|
|
fn into_result(self) -> Result<T, E>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A generic trait for converting a value to a `Result`
|
|
|
|
pub trait AsResult<T, E> {
|
|
|
|
/// Convert to the `result` type
|
|
|
|
fn as_result<'a>(&'a self) -> Result<&'a T, &'a E>;
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
impl<T: Clone, E: Clone> ToResult<T, E> for Result<T, E> {
|
|
|
|
#[inline]
|
|
|
|
fn to_result(&self) -> Result<T, E> { self.clone() }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, E> IntoResult<T, E> for Result<T, E> {
|
|
|
|
#[inline]
|
|
|
|
fn into_result(self) -> Result<T, E> { self }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, E> AsResult<T, E> for Result<T, E> {
|
|
|
|
#[inline]
|
|
|
|
fn as_result<'a>(&'a self) -> Result<&'a T, &'a E> {
|
|
|
|
match *self {
|
|
|
|
Ok(ref t) => Ok(t),
|
|
|
|
Err(ref e) => Err(e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Trait implementations
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-11-01 06:25:36 -05:00
|
|
|
impl<T: Clone, E> ToOption<T> for Result<T, E> {
|
2013-09-11 11:26:59 -05:00
|
|
|
#[inline]
|
2013-10-16 13:35:45 -05:00
|
|
|
fn to_option(&self) -> Option<T> {
|
2013-09-11 11:26:59 -05:00
|
|
|
match *self {
|
|
|
|
Ok(ref t) => Some(t.clone()),
|
|
|
|
Err(_) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-01 06:25:36 -05:00
|
|
|
impl<T, E> IntoOption<T> for Result<T, E> {
|
2013-09-11 11:26:59 -05:00
|
|
|
#[inline]
|
2013-10-16 13:35:45 -05:00
|
|
|
fn into_option(self) -> Option<T> {
|
2013-09-11 11:26:59 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => Some(t),
|
|
|
|
Err(_) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-01 06:25:36 -05:00
|
|
|
impl<T, E> AsOption<T> for Result<T, E> {
|
2013-09-11 11:26:59 -05:00
|
|
|
#[inline]
|
2013-10-16 13:35:45 -05:00
|
|
|
fn as_option<'a>(&'a self) -> Option<&'a T> {
|
2013-09-11 11:26:59 -05:00
|
|
|
match *self {
|
|
|
|
Ok(ref t) => Some(t),
|
|
|
|
Err(_) => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-16 13:35:45 -05:00
|
|
|
impl<T: fmt::Default, E: fmt::Default> fmt::Default for Result<T, E> {
|
|
|
|
#[inline]
|
|
|
|
fn fmt(s: &Result<T, E>, f: &mut fmt::Formatter) {
|
|
|
|
match *s {
|
|
|
|
Ok(ref t) => write!(f.buf, "Ok({})", *t),
|
|
|
|
Err(ref e) => write!(f.buf, "Err({})", *e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Free functions
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
/// Takes each element in the iterator: if it is an error, no further
|
|
|
|
/// elements are taken, and the error is returned.
|
|
|
|
/// Should no error occur, a vector containing the values of each Result
|
|
|
|
/// is returned.
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
|
|
|
/// Here is an example which increments every integer in a vector,
|
|
|
|
/// checking for overflow:
|
|
|
|
///
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
/// fn inc_conditionally(x: uint) -> Result<uint, &'static str> {
|
2013-08-03 18:59:24 -05:00
|
|
|
/// if x == uint::max_value { return Err("overflow"); }
|
|
|
|
/// else { return Ok(x+1u); }
|
|
|
|
/// }
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
/// let v = [1u, 2, 3];
|
|
|
|
/// let res = collect(v.iter().map(|&x| inc_conditionally(x)));
|
|
|
|
/// assert!(res == Ok(~[2u, 3, 4]));
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
pub fn collect<T, E, Iter: Iterator<Result<T, E>>>(mut iterator: Iter)
|
|
|
|
-> Result<~[T], E> {
|
|
|
|
let (lower, _) = iterator.size_hint();
|
|
|
|
let mut vs: ~[T] = vec::with_capacity(lower);
|
|
|
|
for t in iterator {
|
|
|
|
match t {
|
|
|
|
Ok(v) => vs.push(v),
|
|
|
|
Err(u) => return Err(u)
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
}
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
Ok(vs)
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
/// Perform a fold operation over the result values from an iterator.
|
2013-08-03 18:59:24 -05:00
|
|
|
///
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
/// If an `Err` is encountered, it is immediately returned.
|
|
|
|
/// Otherwise, the folded value is returned.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn fold<T,
|
|
|
|
V,
|
|
|
|
E,
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
Iter: Iterator<Result<T, E>>>(
|
|
|
|
mut iterator: Iter,
|
|
|
|
mut init: V,
|
2013-11-18 23:15:42 -06:00
|
|
|
f: |V, T| -> V)
|
|
|
|
-> Result<V, E> {
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
for t in iterator {
|
|
|
|
match t {
|
|
|
|
Ok(v) => init = f(init, v),
|
|
|
|
Err(u) => return Err(u)
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
}
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
Ok(init)
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
/// Perform a trivial fold operation over the result values
|
|
|
|
/// from an iterator.
|
|
|
|
///
|
|
|
|
/// If an `Err` is encountered, it is immediately returned.
|
|
|
|
/// Otherwise, a simple `Ok(())` is returned.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn fold_<T,E,Iter:Iterator<Result<T,E>>>(iterator: Iter) -> Result<(),E> {
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
fold(iterator, (), |_, _| ())
|
2012-03-22 22:06:01 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Tests
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2013-07-24 22:25:18 -05:00
|
|
|
use super::*;
|
2013-08-04 18:05:25 -05:00
|
|
|
|
2013-09-08 10:01:16 -05:00
|
|
|
use iter::range;
|
2013-09-11 11:26:59 -05:00
|
|
|
use option::{IntoOption, ToOption, AsOption};
|
2013-11-01 09:37:29 -05:00
|
|
|
use option::{Some, None};
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
use vec::ImmutableVector;
|
2013-10-16 13:35:45 -05:00
|
|
|
use to_str::ToStr;
|
2012-12-27 19:53:04 -06:00
|
|
|
|
2013-07-24 22:25:18 -05:00
|
|
|
pub fn op1() -> Result<int, ~str> { Ok(666) }
|
2013-09-11 14:52:17 -05:00
|
|
|
pub fn op2() -> Result<int, ~str> { Err(~"sadface") }
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_and() {
|
|
|
|
assert_eq!(op1().and(Ok(667)).unwrap(), 667);
|
2013-10-31 17:09:24 -05:00
|
|
|
assert_eq!(op1().and(Err::<(), ~str>(~"bad")).unwrap_err(), ~"bad");
|
2012-01-17 19:28:21 -06:00
|
|
|
|
2013-09-11 14:52:17 -05:00
|
|
|
assert_eq!(op2().and(Ok(667)).unwrap_err(), ~"sadface");
|
2013-10-31 17:09:24 -05:00
|
|
|
assert_eq!(op2().and(Err::<(), ~str>(~"bad")).unwrap_err(), ~"sadface");
|
2012-03-13 16:39:28 -05:00
|
|
|
}
|
2012-01-17 19:28:21 -06:00
|
|
|
|
2013-09-11 14:52:17 -05:00
|
|
|
#[test]
|
|
|
|
pub fn test_and_then() {
|
|
|
|
assert_eq!(op1().and_then(|i| Ok::<int, ~str>(i + 1)).unwrap(), 667);
|
|
|
|
assert_eq!(op1().and_then(|_| Err::<int, ~str>(~"bad")).unwrap_err(), ~"bad");
|
|
|
|
|
|
|
|
assert_eq!(op2().and_then(|i| Ok::<int, ~str>(i + 1)).unwrap_err(), ~"sadface");
|
|
|
|
assert_eq!(op2().and_then(|_| Err::<int, ~str>(~"bad")).unwrap_err(), ~"sadface");
|
|
|
|
}
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
|
|
#[test]
|
2013-09-11 14:52:17 -05:00
|
|
|
pub fn test_or() {
|
|
|
|
assert_eq!(op1().or(Ok(667)).unwrap(), 666);
|
|
|
|
assert_eq!(op1().or(Err(~"bad")).unwrap(), 666);
|
|
|
|
|
|
|
|
assert_eq!(op2().or(Ok(667)).unwrap(), 667);
|
|
|
|
assert_eq!(op2().or(Err(~"bad")).unwrap_err(), ~"bad");
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-09-11 14:52:17 -05:00
|
|
|
pub fn test_or_else() {
|
|
|
|
assert_eq!(op1().or_else(|_| Ok::<int, ~str>(667)).unwrap(), 666);
|
|
|
|
assert_eq!(op1().or_else(|e| Err::<int, ~str>(e + "!")).unwrap(), 666);
|
|
|
|
|
|
|
|
assert_eq!(op2().or_else(|_| Ok::<int, ~str>(667)).unwrap(), 667);
|
|
|
|
assert_eq!(op2().or_else(|e| Err::<int, ~str>(e + "!")).unwrap_err(), ~"sadface!");
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_iter() {
|
2012-05-26 22:33:08 -05:00
|
|
|
let mut valid = false;
|
2013-08-03 12:40:20 -05:00
|
|
|
let okval = Ok::<~str, ~str>(~"a");
|
2013-11-21 19:23:21 -06:00
|
|
|
okval.iter().next().map(|_| { valid = true; });
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
|
2013-08-03 12:40:20 -05:00
|
|
|
let errval = Err::<~str, ~str>(~"b");
|
2013-11-21 19:23:21 -06:00
|
|
|
errval.iter().next().map(|_| { valid = false; });
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_iter_err() {
|
2012-05-26 22:33:08 -05:00
|
|
|
let mut valid = true;
|
2013-08-03 12:40:20 -05:00
|
|
|
let okval = Ok::<~str, ~str>(~"a");
|
2013-11-21 19:23:21 -06:00
|
|
|
okval.iter_err().next().map(|_| { valid = false });
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
|
|
|
|
valid = false;
|
2013-08-03 12:40:20 -05:00
|
|
|
let errval = Err::<~str, ~str>(~"b");
|
2013-11-21 19:23:21 -06:00
|
|
|
errval.iter_err().next().map(|_| { valid = true });
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_map() {
|
2013-10-31 17:09:24 -05:00
|
|
|
assert_eq!(Ok::<~str, ~str>(~"a").map(|x| x + "b"), Ok(~"ab"));
|
|
|
|
assert_eq!(Err::<~str, ~str>(~"a").map(|x| x + "b"), Err(~"a"));
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_map_err() {
|
2013-10-31 17:09:24 -05:00
|
|
|
assert_eq!(Ok::<~str, ~str>(~"a").map_err(|x| x + "b"), Ok(~"a"));
|
|
|
|
assert_eq!(Err::<~str, ~str>(~"a").map_err(|x| x + "b"), Err(~"ab"));
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
2012-10-22 20:31:13 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_get_ref_method() {
|
2012-10-22 20:31:13 -05:00
|
|
|
let foo: Result<int, ()> = Ok(100);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*foo.get_ref(), 100);
|
2012-10-22 20:31:13 -05:00
|
|
|
}
|
2013-07-26 20:36:51 -05:00
|
|
|
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
#[test]
|
|
|
|
fn test_collect() {
|
|
|
|
assert_eq!(collect(range(0, 0)
|
|
|
|
.map(|_| Ok::<int, ()>(0))),
|
|
|
|
Ok(~[]));
|
|
|
|
assert_eq!(collect(range(0, 3)
|
|
|
|
.map(|x| Ok::<int, ()>(x))),
|
|
|
|
Ok(~[0, 1, 2]));
|
|
|
|
assert_eq!(collect(range(0, 3)
|
|
|
|
.map(|x| if x > 1 { Err(x) } else { Ok(x) })),
|
|
|
|
Err(2));
|
|
|
|
|
|
|
|
// test that it does not take more elements than it needs
|
2013-10-21 15:08:31 -05:00
|
|
|
let functions = [|| Ok(()), || Err(1), || fail!()];
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
|
|
|
|
assert_eq!(collect(functions.iter().map(|f| (*f)())),
|
|
|
|
Err(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_fold() {
|
|
|
|
assert_eq!(fold_(range(0, 0)
|
|
|
|
.map(|_| Ok::<(), ()>(()))),
|
|
|
|
Ok(()));
|
|
|
|
assert_eq!(fold(range(0, 3)
|
|
|
|
.map(|x| Ok::<int, ()>(x)),
|
|
|
|
0, |a, b| a + b),
|
|
|
|
Ok(3));
|
|
|
|
assert_eq!(fold_(range(0, 3)
|
|
|
|
.map(|x| if x > 1 { Err(x) } else { Ok(()) })),
|
|
|
|
Err(2));
|
|
|
|
|
|
|
|
// test that it does not take more elements than it needs
|
2013-10-21 15:08:31 -05:00
|
|
|
let functions = [|| Ok(()), || Err(1), || fail!()];
|
std: Replace map_vec, map_vec2, iter_vec2 in std::result
Replace these with three functions based on iterators: collect, fold,
and fold_. The mapping part is replaced by iterator .map(), so the part
that these functions do is to accumulate the final Result<,> value.
* `result::collect` gathers `Iterator<Result<V, U>>` to `Result<~[V], U>`
* `result::fold` folds `Iterator<Result<T, E>>` to `Result<V, E>`
* `result::fold_` folds `Iterator<Result<T, E>>` to `Result<(), E>`
2013-08-12 13:24:05 -05:00
|
|
|
|
|
|
|
assert_eq!(fold_(functions.iter()
|
|
|
|
.map(|f| (*f)())),
|
|
|
|
Err(1));
|
|
|
|
}
|
2013-09-11 11:26:59 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_to_option() {
|
|
|
|
let ok: Result<int, int> = Ok(100);
|
|
|
|
let err: Result<int, int> = Err(404);
|
|
|
|
|
2013-11-01 06:25:36 -05:00
|
|
|
assert_eq!(ok.to_option(), Some(100));
|
|
|
|
assert_eq!(err.to_option(), None);
|
2013-09-11 11:26:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_into_option() {
|
|
|
|
let ok: Result<int, int> = Ok(100);
|
|
|
|
let err: Result<int, int> = Err(404);
|
|
|
|
|
2013-11-01 06:25:36 -05:00
|
|
|
assert_eq!(ok.into_option(), Some(100));
|
|
|
|
assert_eq!(err.into_option(), None);
|
2013-09-11 11:26:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_as_option() {
|
|
|
|
let ok: Result<int, int> = Ok(100);
|
|
|
|
let err: Result<int, int> = Err(404);
|
|
|
|
|
|
|
|
assert_eq!(ok.as_option().unwrap(), &100);
|
2013-11-01 06:25:36 -05:00
|
|
|
assert_eq!(err.as_option(), None);
|
2013-09-11 11:26:59 -05:00
|
|
|
}
|
2013-09-11 11:32:09 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_to_result() {
|
|
|
|
let ok: Result<int, int> = Ok(100);
|
|
|
|
let err: Result<int, int> = Err(404);
|
|
|
|
|
|
|
|
assert_eq!(ok.to_result(), Ok(100));
|
|
|
|
assert_eq!(err.to_result(), Err(404));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_into_result() {
|
|
|
|
let ok: Result<int, int> = Ok(100);
|
|
|
|
let err: Result<int, int> = Err(404);
|
|
|
|
|
|
|
|
assert_eq!(ok.into_result(), Ok(100));
|
|
|
|
assert_eq!(err.into_result(), Err(404));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_as_result() {
|
|
|
|
let ok: Result<int, int> = Ok(100);
|
|
|
|
let err: Result<int, int> = Err(404);
|
|
|
|
|
|
|
|
let x = 100;
|
|
|
|
assert_eq!(ok.as_result(), Ok(&x));
|
|
|
|
|
|
|
|
let x = 404;
|
|
|
|
assert_eq!(err.as_result(), Err(&x));
|
|
|
|
}
|
2013-09-11 11:33:45 -05:00
|
|
|
|
2013-10-16 13:35:45 -05:00
|
|
|
#[test]
|
|
|
|
pub fn test_to_str() {
|
|
|
|
let ok: Result<int, ~str> = Ok(100);
|
|
|
|
let err: Result<int, ~str> = Err(~"Err");
|
|
|
|
|
|
|
|
assert_eq!(ok.to_str(), ~"Ok(100)");
|
|
|
|
assert_eq!(err.to_str(), ~"Err(Err)");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_fmt_default() {
|
|
|
|
let ok: Result<int, ~str> = Ok(100);
|
|
|
|
let err: Result<int, ~str> = Err(~"Err");
|
|
|
|
|
|
|
|
assert_eq!(format!("{}", ok), ~"Ok(100)");
|
|
|
|
assert_eq!(format!("{}", err), ~"Err(Err)");
|
|
|
|
}
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|