irauta / bitreader

Rust library for reading bit sequences from a byte buffer
Apache License 2.0
37 stars 10 forks source link

Add align method #14

Closed tp-m closed 3 years ago

tp-m commented 3 years ago

Convenience function for

while !is_aligned(N) {
  skip(1);
}

Not mission critical of course, but seems nice to have.