tree: 5f3416c896fb6360b7fbe64001085970aba896ae [path history] [tgz]
  1. benches/
  2. src/
  3. .cargo-checksum.json
  4. Cargo.toml
  5. LICENSE-APACHE
  6. LICENSE-MIT
  7. README.md
vendor/str_stack-0.1.0/README.md

StrStack

Linux: Build Status

A string allocation library. This is primarily useful when you want to allocate a bunch of small strings, use them, and then destroy them all together.

Documentation

https://stebalien.github.com/str_stack/str_stack/

Performance

  • Allocation: ~2.5x speedup (for 1000 strings) (~42ns per string)
  • Indexing: 0.73x speedup (slower) (~1.7ns per index)
  • Iterate: 0.35x speedup (much slower) (~1ns per iteration)