2012-08-14 14:11:15 -05:00
|
|
|
// NB: transitionary, de-mode-ing.
|
|
|
|
#[forbid(deprecated_mode)];
|
|
|
|
#[forbid(deprecated_pattern)];
|
|
|
|
|
2012-08-30 14:15:53 -05:00
|
|
|
use cmp::Eq;
|
|
|
|
|
2012-08-01 18:04:43 -05:00
|
|
|
/**
|
|
|
|
* Miscellaneous helpers for common patterns.
|
|
|
|
*/
|
|
|
|
|
2012-08-02 13:26:52 -05:00
|
|
|
/// The identity function.
|
|
|
|
pure fn id<T>(+x: T) -> T { x }
|
|
|
|
|
2012-08-07 13:16:51 -05:00
|
|
|
/// Ignores a value.
|
|
|
|
pure fn ignore<T>(+_x: T) { }
|
|
|
|
|
2012-08-21 17:55:17 -05:00
|
|
|
/// Sets `*ptr` to `new_value`, invokes `op()`, and then restores the
|
|
|
|
/// original value of `*ptr`.
|
|
|
|
#[inline(always)]
|
|
|
|
fn with<T: copy, R>(
|
|
|
|
ptr: &mut T,
|
|
|
|
+new_value: T,
|
|
|
|
op: &fn() -> R) -> R
|
|
|
|
{
|
|
|
|
// NDM: if swap operator were defined somewhat differently,
|
|
|
|
// we wouldn't need to copy...
|
|
|
|
|
|
|
|
let old_value = *ptr;
|
|
|
|
*ptr = move new_value;
|
|
|
|
let result = op();
|
|
|
|
*ptr = move old_value;
|
|
|
|
return move result;
|
|
|
|
}
|
|
|
|
|
2012-08-01 18:04:43 -05:00
|
|
|
/**
|
|
|
|
* Swap the values at two mutable locations of the same type, without
|
|
|
|
* deinitialising or copying either one.
|
|
|
|
*/
|
2012-08-02 13:40:42 -05:00
|
|
|
#[inline(always)]
|
2012-08-01 18:04:43 -05:00
|
|
|
fn swap<T>(x: &mut T, y: &mut T) {
|
|
|
|
*x <-> *y;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Replace the value at a mutable location with a new one, returning the old
|
|
|
|
* value, without deinitialising or copying either one.
|
|
|
|
*/
|
2012-08-02 13:40:42 -05:00
|
|
|
#[inline(always)]
|
2012-08-01 18:04:43 -05:00
|
|
|
fn replace<T>(dest: &mut T, +src: T) -> T {
|
|
|
|
let mut tmp = src;
|
|
|
|
swap(dest, &mut tmp);
|
|
|
|
tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A non-copyable dummy type.
|
2012-08-15 20:46:55 -05:00
|
|
|
struct NonCopyable {
|
2012-09-07 16:50:47 -05:00
|
|
|
i: (),
|
2012-08-01 18:04:43 -05:00
|
|
|
drop { }
|
|
|
|
}
|
|
|
|
|
2012-09-04 17:23:28 -05:00
|
|
|
fn NonCopyable() -> NonCopyable { NonCopyable { i: () } }
|
|
|
|
|
2012-08-01 18:04:43 -05:00
|
|
|
mod tests {
|
2012-08-02 13:26:52 -05:00
|
|
|
#[test]
|
|
|
|
fn identity_crisis() {
|
|
|
|
// Writing a test for the identity function. How did it come to this?
|
2012-08-27 18:26:35 -05:00
|
|
|
let x = ~[(5, false)];
|
2012-08-28 17:54:45 -05:00
|
|
|
//FIXME #3387 assert x.eq(id(copy x));
|
|
|
|
let y = copy x;
|
|
|
|
assert x.eq(id(y));
|
2012-08-02 13:26:52 -05:00
|
|
|
}
|
2012-08-01 18:04:43 -05:00
|
|
|
#[test]
|
|
|
|
fn test_swap() {
|
|
|
|
let mut x = 31337;
|
|
|
|
let mut y = 42;
|
|
|
|
swap(&mut x, &mut y);
|
|
|
|
assert x == 42;
|
|
|
|
assert y == 31337;
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn test_replace() {
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut x = Some(NonCopyable());
|
|
|
|
let y = replace(&mut x, None);
|
2012-08-01 18:04:43 -05:00
|
|
|
assert x.is_none();
|
|
|
|
assert y.is_some();
|
|
|
|
}
|
|
|
|
}
|