TruthTableEdit

Trait TruthTableEdit 

Source
pub trait TruthTableEdit {
    // Required method
    fn set_bit(&mut self, bit_index: usize, value: bool);
}
Expand description

Abstraction for modifying a truth-table.

Required Methods§

Source

fn set_bit(&mut self, bit_index: usize, value: bool)

Set the value of an output bit in the truth-table.

Implementors§