1
2
3
4
#[inline]
pub const fn is_false(v: &bool) -> bool {
    !(*v)
}