get_bits

Macro get_bits 

Source
macro_rules! get_bits {
    ($num:expr, $hi:literal..$lo:literal) => { ... };
}
Expand description

Return the given bits from a value

assert_eq!(get_bits!(0b1111, 2..0), 7)