Macro telety_impl::noop

source ·
macro_rules! noop {
    ($($tokens:tt)*) => { ... };
}
Expand description

Accept any arguments and output nothing.

§Example

let mut a = true;
noop!(a = false);
assert!(a);