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
14
mod any_rc;
mod arc;
mod default_given_vec_config;
mod empty;
mod rc;
mod stack;
mod stack_bin_builder;
mod static_bin;
mod vec;

pub use {
    any_rc::*, arc::*, default_given_vec_config::*, empty::*, rc::*, stack::*,
    stack_bin_builder::*, static_bin::*, vec::*,
};