abin 0.1.6

A library for working with binaries and strings. The library tries to avoid heap-allocations / memory-copy whenever possible by automatically choosing a reasonable strategy: stack for small binaries; static-lifetime-binary or reference-counting.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use {
    any_bin::*, bin::*, bin_builder::*, bin_segment::*, excess_shrink::*, factory::*, into_iter::*,
    s_bin::*,
};

mod any_bin;
mod bin;
mod bin_builder;
mod bin_segment;
mod excess_shrink;
mod factory;
mod into_iter;
mod s_bin;