1use crate::{Cycle, Flip, EOF}; 2 3/// Sets current bit to [`False`][crate::False]. 4pub type SetFalse<Next = EOF> = Cycle<Flip, Next>; 5 6/// Sets current bit to [`True`][crate::True]. 7pub type SetTrue<Next = EOF> = SetFalse<Flip<Next>>;