Trait lzw::BitWriter [] [src]

pub trait BitWriter: Write {
    fn write_bits(&mut self, v: u16, n: u8) -> Result<()>;
}

A bit writer.

Required Methods

Writes the next n bits.

Implementors