Macro adapton::get [] [src]

macro_rules! get {
    ($art:expr) => { ... };
    ($art:expr, $cycle_out:expr) => { ... };
}

Convenience wrapper for engine::force

Example usage:

let c = cell!(123);
assert_eq!(get!(c), 123);
assert_eq!(get!(c), force(&c));