2013-03-16 14:49:12 -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.
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
//! Operations on the ubiquitous `Option` type.
|
|
|
|
//!
|
|
|
|
//! Type `Option` represents an optional value.
|
|
|
|
//!
|
|
|
|
//! Every `Option<T>` value can either be `Some(T)` or `None`. Where in other
|
|
|
|
//! languages you might use a nullable type, in Rust you would use an option
|
|
|
|
//! type.
|
|
|
|
//!
|
|
|
|
//! Options are most commonly used with pattern matching to query the presence
|
|
|
|
//! of a value and take action, always accounting for the `None` case.
|
|
|
|
//!
|
|
|
|
//! # Example
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! let msg = Some(~"howdy");
|
|
|
|
//!
|
|
|
|
//! // Take a reference to the contained string
|
|
|
|
//! match msg {
|
|
|
|
//! Some(ref m) => io::println(*m),
|
|
|
|
//! None => ()
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! // Remove the contained string, destroying the Option
|
|
|
|
//! let unwrapped_msg = match msg {
|
|
|
|
//! Some(m) => m,
|
|
|
|
//! None => ~"default message"
|
|
|
|
//! };
|
|
|
|
//! ```
|
|
|
|
|
|
|
|
use any::Any;
|
2013-07-02 14:47:32 -05:00
|
|
|
use clone::Clone;
|
2013-10-31 17:09:24 -05:00
|
|
|
use clone::DeepClone;
|
2013-11-01 06:25:36 -05:00
|
|
|
use cmp::{Eq, TotalEq, TotalOrd};
|
2013-09-09 21:29:11 -05:00
|
|
|
use default::Default;
|
2013-10-31 17:09:24 -05:00
|
|
|
use fmt;
|
2013-09-08 10:01:16 -05:00
|
|
|
use iter::{Iterator, DoubleEndedIterator, ExactSize};
|
2013-10-31 17:09:24 -05:00
|
|
|
use kinds::Send;
|
2013-11-01 06:25:36 -05:00
|
|
|
use str::OwnedStr;
|
2013-08-03 18:59:24 -05:00
|
|
|
use to_str::ToStr;
|
2013-10-31 17:09:24 -05:00
|
|
|
use util;
|
2012-08-27 19:24:15 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// The option type
|
2013-11-01 06:25:36 -05:00
|
|
|
#[deriving(Clone, DeepClone, Eq, Ord, TotalEq, TotalOrd, ToStr)]
|
2012-10-01 16:08:34 -05:00
|
|
|
pub enum Option<T> {
|
2013-10-31 17:09:24 -05:00
|
|
|
/// No value
|
2012-08-20 14:23:37 -05:00
|
|
|
None,
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Some value `T`
|
|
|
|
Some(T)
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Type implementation
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
impl<T> Option<T> {
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Querying the contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Returns true if the option contains a `Some` value
|
|
|
|
#[inline]
|
|
|
|
pub fn is_some(&self) -> bool {
|
2013-08-03 18:59:24 -05:00
|
|
|
match *self {
|
2013-10-31 17:09:24 -05:00
|
|
|
Some(_) => true,
|
|
|
|
None => false
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Returns true if the option equals `None`
|
|
|
|
#[inline]
|
|
|
|
pub fn is_none(&self) -> bool {
|
|
|
|
!self.is_some()
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Adapter for working with references
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-20 01:08:47 -05:00
|
|
|
/// Convert from `Option<T>` to `Option<&T>`
|
|
|
|
#[inline]
|
|
|
|
pub fn as_ref<'r>(&'r self) -> Option<&'r T> {
|
|
|
|
match *self { Some(ref x) => Some(x), None => None }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert from `Option<T>` to `Option<&mut T>`
|
|
|
|
#[inline]
|
|
|
|
pub fn as_mut<'r>(&'r mut self) -> Option<&'r mut T> {
|
|
|
|
match *self { Some(ref mut x) => Some(x), None => None }
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Getting to contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Unwraps a option, yielding the content of a `Some`
|
|
|
|
/// Fails if the value is a `None` with a custom failure message provided by `msg`.
|
|
|
|
#[inline]
|
|
|
|
pub fn expect<M: Any + Send>(self, msg: M) -> T {
|
|
|
|
match self {
|
|
|
|
Some(val) => val,
|
|
|
|
None => fail!(msg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Moves a value out of an option type and returns it.
|
|
|
|
///
|
|
|
|
/// Useful primarily for getting strings, vectors and unique pointers out
|
|
|
|
/// of option types without copying them.
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Fails if the value equals `None`.
|
|
|
|
///
|
|
|
|
/// # Safety note
|
|
|
|
///
|
|
|
|
/// In general, because this function may fail, its use is discouraged.
|
|
|
|
/// Instead, prefer to use pattern matching and handle the `None`
|
|
|
|
/// case explicitly.
|
|
|
|
#[inline]
|
|
|
|
pub fn unwrap(self) -> T {
|
|
|
|
match self {
|
|
|
|
Some(val) => val,
|
|
|
|
None => fail!("called `Option::unwrap()` on a `None` value"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the contained value or a default
|
|
|
|
#[inline]
|
|
|
|
pub fn unwrap_or(self, def: T) -> T {
|
|
|
|
match self {
|
|
|
|
Some(x) => x,
|
|
|
|
None => def
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the contained value or computes it from a closure
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn unwrap_or_else(self, f: || -> T) -> T {
|
2013-10-31 17:09:24 -05:00
|
|
|
match self {
|
|
|
|
Some(x) => x,
|
|
|
|
None => f()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Transforming contained values
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-09-20 01:08:47 -05:00
|
|
|
/// Maps an `Option<T>` to `Option<U>` by applying a function to a contained value.
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn map<U>(self, f: |T| -> U) -> Option<U> {
|
2013-09-20 01:08:47 -05:00
|
|
|
match self { Some(x) => Some(f(x)), None => None }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Applies a function to the contained value or returns a default.
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn map_default<U>(self, def: U, f: |T| -> U) -> U {
|
2013-09-20 01:08:47 -05:00
|
|
|
match self { None => def, Some(t) => f(t) }
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Apply a function to the contained value or do nothing.
|
|
|
|
/// Returns true if the contained value was mutated.
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn mutate(&mut self, f: |T| -> T) -> bool {
|
2013-10-31 17:09:24 -05:00
|
|
|
if self.is_some() {
|
|
|
|
*self = Some(f(self.take_unwrap()));
|
|
|
|
true
|
|
|
|
} else { false }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Apply a function to the contained value or set it to a default.
|
|
|
|
/// Returns true if the contained value was mutated, or false if set to the default.
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn mutate_default(&mut self, def: T, f: |T| -> T) -> bool {
|
2013-10-31 17:09:24 -05:00
|
|
|
if self.is_some() {
|
|
|
|
*self = Some(f(self.take_unwrap()));
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
*self = Some(def);
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Iterator constructors
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-06-10 16:50:12 -05:00
|
|
|
/// Return an iterator over the possibly contained value
|
2013-06-10 16:45:59 -05:00
|
|
|
#[inline]
|
2013-08-03 12:40:20 -05:00
|
|
|
pub fn iter<'r>(&'r self) -> OptionIterator<&'r T> {
|
2013-06-10 16:45:59 -05:00
|
|
|
match *self {
|
|
|
|
Some(ref x) => OptionIterator{opt: Some(x)},
|
|
|
|
None => OptionIterator{opt: None}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-10 16:50:12 -05:00
|
|
|
/// Return a mutable iterator over the possibly contained value
|
2013-06-10 16:45:59 -05:00
|
|
|
#[inline]
|
2013-08-03 12:40:20 -05:00
|
|
|
pub fn mut_iter<'r>(&'r mut self) -> OptionIterator<&'r mut T> {
|
2013-06-10 16:45:59 -05:00
|
|
|
match *self {
|
2013-08-03 12:40:20 -05:00
|
|
|
Some(ref mut x) => OptionIterator{opt: Some(x)},
|
|
|
|
None => OptionIterator{opt: None}
|
2013-06-10 16:45:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 12:40:20 -05:00
|
|
|
/// Return a consuming iterator over the possibly contained value
|
|
|
|
#[inline]
|
2013-08-07 21:21:36 -05:00
|
|
|
pub fn move_iter(self) -> OptionIterator<T> {
|
2013-08-03 12:40:20 -05:00
|
|
|
OptionIterator{opt: self}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Boolean operations on the values, eager and lazy
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2013-03-16 14:49:12 -05:00
|
|
|
|
2013-09-11 11:00:27 -05:00
|
|
|
/// Returns `None` if the option is `None`, otherwise returns `optb`.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn and<U>(self, optb: Option<U>) -> Option<U> {
|
2013-03-16 14:49:12 -05:00
|
|
|
match self {
|
2013-09-11 11:00:27 -05:00
|
|
|
Some(_) => optb,
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-12 20:54:02 -05:00
|
|
|
/// Returns `None` if the option is `None`, otherwise calls `f` with the
|
|
|
|
/// wrapped value and returns the result.
|
2013-09-11 11:00:27 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn and_then<U>(self, f: |T| -> Option<U>) -> Option<U> {
|
2013-09-11 11:00:27 -05:00
|
|
|
match self {
|
2013-09-11 14:52:17 -05:00
|
|
|
Some(x) => f(x),
|
2013-09-11 11:00:27 -05:00
|
|
|
None => None,
|
2013-03-16 14:49:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-11 11:00:27 -05:00
|
|
|
/// Returns the option if it contains a value, otherwise returns `optb`.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn or(self, optb: Option<T>) -> Option<T> {
|
2013-03-16 14:49:12 -05:00
|
|
|
match self {
|
2013-09-11 11:00:27 -05:00
|
|
|
Some(_) => self,
|
|
|
|
None => optb
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-12 20:54:02 -05:00
|
|
|
/// Returns the option if it contains a value, otherwise calls `f` and
|
|
|
|
/// returns the result.
|
2013-09-11 11:00:27 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn or_else(self, f: || -> Option<T>) -> Option<T> {
|
2013-09-11 11:00:27 -05:00
|
|
|
match self {
|
|
|
|
Some(_) => self,
|
|
|
|
None => f(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Misc
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// Take the value out of the option, leaving a `None` in its place.
|
|
|
|
#[inline]
|
|
|
|
pub fn take(&mut self) -> Option<T> {
|
|
|
|
util::replace(self, None)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Filters an optional value using a given function.
|
2013-06-21 14:27:58 -05:00
|
|
|
#[inline(always)]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn filtered(self, f: |t: &T| -> bool) -> Option<T> {
|
2013-06-21 14:27:58 -05:00
|
|
|
match self {
|
|
|
|
Some(x) => if(f(&x)) {Some(x)} else {None},
|
|
|
|
None => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// Applies a function zero or more times until the result is `None`.
|
2013-07-12 21:40:57 -05:00
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
pub fn while_some(self, blk: |v: T| -> Option<T>) {
|
2013-10-31 17:09:24 -05:00
|
|
|
let mut opt = self;
|
|
|
|
while opt.is_some() {
|
|
|
|
opt = blk(opt.unwrap());
|
|
|
|
}
|
2013-07-12 21:40:57 -05:00
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
// Common special cases
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2013-01-13 10:09:09 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/// The option dance. Moves a value out of an option type and returns it,
|
|
|
|
/// replacing the original with `None`.
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Fails if the value equals `None`.
|
|
|
|
#[inline]
|
|
|
|
pub fn take_unwrap(&mut self) -> T {
|
|
|
|
if self.is_none() {
|
|
|
|
fail!("called `Option::take_unwrap()` on a `None` value")
|
2013-01-13 10:09:09 -06:00
|
|
|
}
|
2013-10-31 17:09:24 -05:00
|
|
|
self.take().unwrap()
|
2013-01-13 10:09:09 -06:00
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Gets an immutable reference to the value inside an option.
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Fails if the value equals `None`
|
|
|
|
///
|
|
|
|
/// # Safety note
|
|
|
|
///
|
|
|
|
/// In general, because this function may fail, its use is discouraged
|
|
|
|
/// (calling `get` on `None` is akin to dereferencing a null pointer).
|
|
|
|
/// Instead, prefer to use pattern matching and handle the `None`
|
|
|
|
/// case explicitly.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn get_ref<'a>(&'a self) -> &'a T {
|
2013-04-10 15:11:35 -05:00
|
|
|
match *self {
|
2013-08-03 18:59:24 -05:00
|
|
|
Some(ref x) => x,
|
2013-10-21 15:08:31 -05:00
|
|
|
None => fail!("called `Option::get_ref()` on a `None` value"),
|
2013-04-10 15:11:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Gets a mutable reference to the value inside an option.
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// Fails if the value equals `None`
|
|
|
|
///
|
|
|
|
/// # Safety note
|
|
|
|
///
|
|
|
|
/// In general, because this function may fail, its use is discouraged
|
|
|
|
/// (calling `get` on `None` is akin to dereferencing a null pointer).
|
|
|
|
/// Instead, prefer to use pattern matching and handle the `None`
|
|
|
|
/// case explicitly.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn get_mut_ref<'a>(&'a mut self) -> &'a mut T {
|
2013-04-10 15:11:35 -05:00
|
|
|
match *self {
|
2013-08-03 18:59:24 -05:00
|
|
|
Some(ref mut x) => x,
|
2013-10-21 15:08:31 -05:00
|
|
|
None => fail!("called `Option::get_mut_ref()` on a `None` value"),
|
2013-04-10 15:11:35 -05:00
|
|
|
}
|
|
|
|
}
|
2013-10-31 17:09:24 -05:00
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
impl<T: Default> Option<T> {
|
|
|
|
/// Returns the contained value or default (for this type)
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
pub fn unwrap_or_default(self) -> T {
|
2013-03-16 14:49:12 -05:00
|
|
|
match self {
|
2013-08-03 18:59:24 -05:00
|
|
|
Some(x) => x,
|
2013-10-31 17:09:24 -05:00
|
|
|
None => Default::default()
|
2013-03-16 14:49:12 -05:00
|
|
|
}
|
|
|
|
}
|
2013-10-31 17:09:24 -05:00
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Trait implementations
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
impl<T: fmt::Default> fmt::Default for Option<T> {
|
2013-09-09 21:32:32 -05:00
|
|
|
#[inline]
|
2013-10-31 17:09:24 -05:00
|
|
|
fn fmt(s: &Option<T>, f: &mut fmt::Formatter) {
|
|
|
|
match *s {
|
|
|
|
Some(ref t) => write!(f.buf, "Some({})", *t),
|
|
|
|
None => write!(f.buf, "None")
|
2013-09-09 21:32:32 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-09 21:29:11 -05:00
|
|
|
impl<T> Default for Option<T> {
|
2013-09-11 23:49:25 -05:00
|
|
|
#[inline]
|
2013-09-09 21:29:11 -05:00
|
|
|
fn default() -> Option<T> { None }
|
|
|
|
}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// The Option Iterator
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2013-01-03 17:36:23 -06:00
|
|
|
|
2013-08-03 14:34:00 -05:00
|
|
|
/// An iterator that yields either one or zero elements
|
2013-08-19 14:36:43 -05:00
|
|
|
#[deriving(Clone, DeepClone)]
|
2013-08-03 12:40:20 -05:00
|
|
|
pub struct OptionIterator<A> {
|
|
|
|
priv opt: Option<A>
|
2013-06-10 16:45:59 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 12:40:20 -05:00
|
|
|
impl<A> Iterator<A> for OptionIterator<A> {
|
2013-08-03 14:34:00 -05:00
|
|
|
#[inline]
|
2013-08-03 12:40:20 -05:00
|
|
|
fn next(&mut self) -> Option<A> {
|
2013-08-03 14:34:00 -05:00
|
|
|
self.opt.take()
|
2013-06-10 16:45:59 -05:00
|
|
|
}
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-08-03 14:34:00 -05:00
|
|
|
#[inline]
|
2013-07-08 17:31:26 -05:00
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
|
|
|
match self.opt {
|
|
|
|
Some(_) => (1, Some(1)),
|
|
|
|
None => (0, Some(0)),
|
|
|
|
}
|
|
|
|
}
|
2013-06-10 16:45:59 -05:00
|
|
|
}
|
|
|
|
|
2013-08-10 21:21:31 -05:00
|
|
|
impl<A> DoubleEndedIterator<A> for OptionIterator<A> {
|
|
|
|
#[inline]
|
|
|
|
fn next_back(&mut self) -> Option<A> {
|
|
|
|
self.opt.take()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 11:20:24 -05:00
|
|
|
impl<A> ExactSize<A> for OptionIterator<A> {}
|
|
|
|
|
2013-10-31 17:09:24 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Tests
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2013-09-11 11:33:45 -05:00
|
|
|
|
2013-11-01 06:25:36 -05:00
|
|
|
use str::StrSlice;
|
2013-07-23 23:30:25 -05:00
|
|
|
use util;
|
|
|
|
|
|
|
|
#[test]
|
2013-08-03 18:59:24 -05:00
|
|
|
fn test_get_ptr() {
|
2013-07-23 23:30:25 -05:00
|
|
|
unsafe {
|
|
|
|
let x = ~0;
|
|
|
|
let addr_x: *int = ::cast::transmute(&*x);
|
|
|
|
let opt = Some(x);
|
|
|
|
let y = opt.unwrap();
|
|
|
|
let addr_y: *int = ::cast::transmute(&*y);
|
|
|
|
assert_eq!(addr_x, addr_y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-08-03 18:59:24 -05:00
|
|
|
fn test_get_str() {
|
2013-07-23 23:30:25 -05:00
|
|
|
let x = ~"test";
|
2013-12-17 09:37:30 -06:00
|
|
|
let addr_x = x.as_ptr();
|
2013-04-22 16:27:30 -05:00
|
|
|
let opt = Some(x);
|
|
|
|
let y = opt.unwrap();
|
2013-12-17 09:37:30 -06:00
|
|
|
let addr_y = y.as_ptr();
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(addr_x, addr_y);
|
2013-04-22 16:27:30 -05:00
|
|
|
}
|
2012-02-21 01:06:47 -06:00
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[test]
|
2013-08-03 18:59:24 -05:00
|
|
|
fn test_get_resource() {
|
2013-12-21 19:50:54 -06:00
|
|
|
use rc::Rc;
|
|
|
|
use cell::RefCell;
|
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
struct R {
|
2013-12-21 19:50:54 -06:00
|
|
|
i: Rc<RefCell<int>>,
|
2013-07-23 23:30:25 -05:00
|
|
|
}
|
2012-02-21 01:06:47 -06:00
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[unsafe_destructor]
|
|
|
|
impl ::ops::Drop for R {
|
2013-12-21 19:50:54 -06:00
|
|
|
fn drop(&mut self) {
|
|
|
|
let ii = self.i.borrow();
|
|
|
|
ii.set(ii.get() + 1);
|
|
|
|
}
|
2013-07-23 23:30:25 -05:00
|
|
|
}
|
2013-02-27 18:13:53 -06:00
|
|
|
|
2013-12-21 19:50:54 -06:00
|
|
|
fn R(i: Rc<RefCell<int>>) -> R {
|
2013-07-23 23:30:25 -05:00
|
|
|
R {
|
|
|
|
i: i
|
|
|
|
}
|
|
|
|
}
|
2012-09-04 17:23:28 -05:00
|
|
|
|
2013-12-21 19:50:54 -06:00
|
|
|
let i = Rc::from_send(RefCell::new(0));
|
2013-07-23 23:30:25 -05:00
|
|
|
{
|
2013-12-21 19:50:54 -06:00
|
|
|
let x = R(i.clone());
|
2013-07-23 23:30:25 -05:00
|
|
|
let opt = Some(x);
|
|
|
|
let _y = opt.unwrap();
|
2012-09-04 17:23:28 -05:00
|
|
|
}
|
2013-12-21 19:50:54 -06:00
|
|
|
assert_eq!(i.borrow().get(), 1);
|
2012-09-04 17:23:28 -05:00
|
|
|
}
|
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[test]
|
|
|
|
fn test_option_dance() {
|
|
|
|
let x = Some(());
|
|
|
|
let mut y = Some(5);
|
|
|
|
let mut y2 = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
for _x in x.iter() {
|
2013-07-23 23:30:25 -05:00
|
|
|
y2 = y.take_unwrap();
|
|
|
|
}
|
|
|
|
assert_eq!(y2, 5);
|
|
|
|
assert!(y.is_none());
|
|
|
|
}
|
2013-10-31 17:09:24 -05:00
|
|
|
|
2013-08-19 17:40:37 -05:00
|
|
|
#[test] #[should_fail]
|
2013-07-23 23:30:25 -05:00
|
|
|
fn test_option_too_much_dance() {
|
|
|
|
let mut y = Some(util::NonCopyable);
|
|
|
|
let _y2 = y.take_unwrap();
|
|
|
|
let _y3 = y.take_unwrap();
|
|
|
|
}
|
|
|
|
|
2013-09-11 11:00:27 -05:00
|
|
|
#[test]
|
|
|
|
fn test_and() {
|
|
|
|
let x: Option<int> = Some(1);
|
|
|
|
assert_eq!(x.and(Some(2)), Some(2));
|
2013-10-31 17:09:24 -05:00
|
|
|
assert_eq!(x.and(None::<int>), None);
|
2013-09-11 11:00:27 -05:00
|
|
|
|
|
|
|
let x: Option<int> = None;
|
|
|
|
assert_eq!(x.and(Some(2)), None);
|
2013-10-31 17:09:24 -05:00
|
|
|
assert_eq!(x.and(None::<int>), None);
|
2013-09-11 11:00:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_and_then() {
|
|
|
|
let x: Option<int> = Some(1);
|
2013-09-11 14:52:17 -05:00
|
|
|
assert_eq!(x.and_then(|x| Some(x + 1)), Some(2));
|
|
|
|
assert_eq!(x.and_then(|_| None::<int>), None);
|
2013-09-11 11:00:27 -05:00
|
|
|
|
|
|
|
let x: Option<int> = None;
|
2013-09-11 14:52:17 -05:00
|
|
|
assert_eq!(x.and_then(|x| Some(x + 1)), None);
|
|
|
|
assert_eq!(x.and_then(|_| None::<int>), None);
|
2013-09-11 11:00:27 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_or() {
|
|
|
|
let x: Option<int> = Some(1);
|
|
|
|
assert_eq!(x.or(Some(2)), Some(1));
|
|
|
|
assert_eq!(x.or(None), Some(1));
|
|
|
|
|
|
|
|
let x: Option<int> = None;
|
|
|
|
assert_eq!(x.or(Some(2)), Some(2));
|
|
|
|
assert_eq!(x.or(None), None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_or_else() {
|
|
|
|
let x: Option<int> = Some(1);
|
|
|
|
assert_eq!(x.or_else(|| Some(2)), Some(1));
|
|
|
|
assert_eq!(x.or_else(|| None), Some(1));
|
|
|
|
|
|
|
|
let x: Option<int> = None;
|
|
|
|
assert_eq!(x.or_else(|| Some(2)), Some(2));
|
|
|
|
assert_eq!(x.or_else(|| None), None);
|
|
|
|
}
|
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[test]
|
|
|
|
fn test_option_while_some() {
|
|
|
|
let mut i = 0;
|
2013-11-21 19:23:21 -06:00
|
|
|
Some(10).while_some(|j| {
|
2013-07-23 23:30:25 -05:00
|
|
|
i += 1;
|
|
|
|
if (j > 0) {
|
|
|
|
Some(j-1)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2013-11-21 19:23:21 -06:00
|
|
|
});
|
2013-07-23 23:30:25 -05:00
|
|
|
assert_eq!(i, 11);
|
2012-02-21 01:06:47 -06:00
|
|
|
}
|
|
|
|
|
2013-09-10 21:03:35 -05:00
|
|
|
#[test]
|
|
|
|
fn test_unwrap() {
|
|
|
|
assert_eq!(Some(1).unwrap(), 1);
|
|
|
|
assert_eq!(Some(~"hello").unwrap(), ~"hello");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
|
|
|
fn test_unwrap_fail1() {
|
|
|
|
let x: Option<int> = None;
|
|
|
|
x.unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
2013-10-31 17:09:24 -05:00
|
|
|
fn test_unwrap_fail2() {
|
2013-09-10 21:03:35 -05:00
|
|
|
let x: Option<~str> = None;
|
|
|
|
x.unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unwrap_or() {
|
|
|
|
let x: Option<int> = Some(1);
|
|
|
|
assert_eq!(x.unwrap_or(2), 1);
|
|
|
|
|
|
|
|
let x: Option<int> = None;
|
|
|
|
assert_eq!(x.unwrap_or(2), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_unwrap_or_else() {
|
|
|
|
let x: Option<int> = Some(1);
|
|
|
|
assert_eq!(x.unwrap_or_else(|| 2), 1);
|
|
|
|
|
|
|
|
let x: Option<int> = None;
|
|
|
|
assert_eq!(x.unwrap_or_else(|| 2), 2);
|
|
|
|
}
|
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[test]
|
|
|
|
fn test_filtered() {
|
|
|
|
let some_stuff = Some(42);
|
|
|
|
let modified_stuff = some_stuff.filtered(|&x| {x < 10});
|
2013-08-03 18:59:24 -05:00
|
|
|
assert_eq!(some_stuff.unwrap(), 42);
|
2013-07-23 23:30:25 -05:00
|
|
|
assert!(modified_stuff.is_none());
|
2012-07-17 12:54:24 -05:00
|
|
|
}
|
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[test]
|
|
|
|
fn test_iter() {
|
|
|
|
let val = 5;
|
2013-06-21 14:27:58 -05:00
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
let x = Some(val);
|
|
|
|
let mut it = x.iter();
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
assert_eq!(it.size_hint(), (1, Some(1)));
|
|
|
|
assert_eq!(it.next(), Some(&val));
|
|
|
|
assert_eq!(it.size_hint(), (0, Some(0)));
|
|
|
|
assert!(it.next().is_none());
|
|
|
|
}
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
#[test]
|
|
|
|
fn test_mut_iter() {
|
|
|
|
let val = 5;
|
|
|
|
let new_val = 11;
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-07-23 23:30:25 -05:00
|
|
|
let mut x = Some(val);
|
2013-09-27 19:02:31 -05:00
|
|
|
{
|
|
|
|
let mut it = x.mut_iter();
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-09-27 19:02:31 -05:00
|
|
|
assert_eq!(it.size_hint(), (1, Some(1)));
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-09-27 19:02:31 -05:00
|
|
|
match it.next() {
|
|
|
|
Some(interior) => {
|
|
|
|
assert_eq!(*interior, val);
|
|
|
|
*interior = new_val;
|
|
|
|
}
|
|
|
|
None => assert!(false),
|
2013-07-23 23:30:25 -05:00
|
|
|
}
|
2013-07-08 17:31:26 -05:00
|
|
|
|
2013-09-27 19:02:31 -05:00
|
|
|
assert_eq!(it.size_hint(), (0, Some(0)));
|
|
|
|
assert!(it.next().is_none());
|
|
|
|
}
|
|
|
|
assert_eq!(x, Some(new_val));
|
2013-07-23 23:30:25 -05:00
|
|
|
}
|
2013-08-01 17:18:10 -05:00
|
|
|
|
2013-08-08 15:07:22 -05:00
|
|
|
#[test]
|
|
|
|
fn test_ord() {
|
|
|
|
let small = Some(1.0);
|
|
|
|
let big = Some(5.0);
|
|
|
|
let nan = Some(0.0/0.0);
|
|
|
|
assert!(!(nan < big));
|
|
|
|
assert!(!(nan > big));
|
|
|
|
assert!(small < big);
|
|
|
|
assert!(None < big);
|
|
|
|
assert!(big > None);
|
|
|
|
}
|
|
|
|
|
2013-08-01 17:18:10 -05:00
|
|
|
#[test]
|
|
|
|
fn test_mutate() {
|
|
|
|
let mut x = Some(3i);
|
|
|
|
assert!(x.mutate(|i| i+1));
|
|
|
|
assert_eq!(x, Some(4i));
|
|
|
|
assert!(x.mutate_default(0, |i| i+1));
|
|
|
|
assert_eq!(x, Some(5i));
|
|
|
|
x = None;
|
|
|
|
assert!(!x.mutate(|i| i+1));
|
|
|
|
assert_eq!(x, None);
|
|
|
|
assert!(!x.mutate_default(0i, |i| i+1));
|
|
|
|
assert_eq!(x, Some(0i));
|
|
|
|
}
|
2013-07-08 17:31:26 -05:00
|
|
|
}
|