pub trait GammaRead<E: Endianness>: BitRead<E> {
    // Required method
    fn read_gamma(&mut self) -> Result<u64, Self::Error>;
}
Expand description

Trait for reading γ codes.

This is the trait you should usually pull in scope to read γ codes.

Required Methods§

source

fn read_gamma(&mut self) -> Result<u64, Self::Error>

Object Safety§

This trait is not object safe.

Implementors§