Trait const_arithmetic::AssertFalse
source · pub trait AssertFalse { }
Expand description
Asserts that a binary equals to _0
Example
use const_arithmetic::*;
let True = _1;
let False = _0;
fn bin_assert_false<B>(_b: B) where
B: Binary,
B: AssertFalse
{}
bin_assert_false(_0);