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
pub(crate) use {default_builder::*, internal::*, reference_counted::*};
pub use {factory_new::*, factory_s_new::*, str_factory::*};

mod default_builder;
mod factory_common;
mod factory_new;
mod factory_s_new;
mod internal;
mod reference_counted;
mod str_factory;