flexible-string

A stack heap flexible string designed to improve performance.

FlexibleString was first implemented in [spdlog-rs] crate, which improved performance for [spdlog-rs] by about double (see [benchmarks of spdlog-rs]). Now it is extracted to a separate crate for use by other crates.

For more details, please read the crate [documentation].

Examples

You can use FlexibleString almost as well as standard String.

```rust use flexible_string::FlexibleString;

let mut string = FlexibleString::<250>::from("hello"); string.push(','); string.pushstr("world"); asserteq!(string, "hello,world"); ```

Benchmarks

Run cargo +nightly bench in the root directory of this repository for benchmarking.

The following results are generated with Windows 10 64 bit and Intel i9-10900KF CPU @ 3.70GHz.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.