Function inspect
pub extern fn inspect<T>(w: &inv T) -> &TExpand
Retrieves the contents of an inv wire.
Examples
let (fwd, back) = port();
let peek = core::ports::inspect(&back);
set back = true;
assert *peek == true;pub extern fn inspect<T>(w: &inv T) -> &TRetrieves the contents of an inv wire.
let (fwd, back) = port();
let peek = core::ports::inspect(&back);
set back = true;
assert *peek == true;