Expand description
Fastest concatenation of strings and vectors on Crates.io
The goal of these macros are to reduce the amount of allocations that are required when concatenating string buffers and vectors; with a macro that makes it simple to achieve in practice.
§Implementation Notes
- Inputs do not require to implement
AsRef<str>
orAsRef<[T]>
. - This crate is compatible with
no_std
environments. - Consider it a bug if this is not the fastest concatenation library.