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> or AsRef<[T]>.
  • This crate is compatible with no_std environments.
  • Consider it a bug if this is not the fastest concatenation library.

Macros

Appends any number of string slices onto a string buffer

Appends any number of slices onto a vector