inline fn hasMask(input: u32, mask: u32) bool
inline fn hasMask(input: u32, mask: u32) bool { return (input & mask) == mask; }