Skip to main content

luaur_vm/macros/
testbits.rs

1#[inline(always)]
2pub const fn testbits(x: i32, m: i32) -> i32 {
3    x & m
4}