teeint 1.0.0

A teeworlds variable int packer/unpacker.
Documentation
  • Coverage
  • 100%
    8 out of 8 items documented1 out of 7 items with examples
  • Size
  • Source code size: 25.73 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.37 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • edg-l/teeint
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • edg-l

teeint

Version Downloads License Rust Docs

A teeworlds variable integer packer/unpacker.

Packing

use std::io::Cursor;

let mut buff = Cursor::new([0; 2]);

teeint::pack(&mut buff, 64).unwrap();

let buff = buff.into_inner();
assert_eq!(buff[0], 0b1000_0000);
assert_eq!(buff[1], 0b0000_0001);

Or using the trait [PackTwInt]:

use std::io::Cursor;
use teeint::PackTwInt;

let mut buff = Cursor::new([0; 2]);

64.pack(&mut buff).unwrap();

let buff = buff.into_inner();
assert_eq!(buff[0], 0b1000_0000);
assert_eq!(buff[1], 0b0000_0001);

Or

use teeint::PackTwInt;

let mut buff = [0; 2];
64.pack(&mut buff.as_mut_slice()).unwrap();
assert_eq!(buff[0], 0b1000_0000);
assert_eq!(buff[1], 0b0000_0001);

Unpacking

use std::io::Cursor;

let mut buff = Cursor::new([0b1000_0000, 0b0000_0001]);
let data = teeint::unpack(&mut buff).unwrap();
assert_eq!(data, 64);

Or using the trait [UnPackTwInt]:

use teeint::UnPackTwInt;

let buff = [0b1000_0000, 0b0000_0001];
let result = buff.as_slice().unpack().unwrap();
assert_eq!(result, 64);

License: MIT OR Apache-2.0