bitwise-io 0.1.2

buffered bitwise input/output
Documentation
  • Coverage
  • 85%
    17 out of 20 items documented0 out of 16 items with examples
  • Size
  • Source code size: 10.87 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.2 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • nelsongillo/bitwise-io
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • einzigartigerName

bitwise-io

A Rust Library that enables you to read/write single bits from/to a stream

Install

Add this to your Cargo.toml

[dependencies]
bitwise-io = "0.1.0"

Internal

Reader

The BitReader wraps a BufRead Trait and a position indicator for the next bit.

Writer

The BitWriter wraps the Write Trait and has an internal buffer of 1024 bytes (8192 bits).