adze-stack-pool-core 0.1.0

Thread-local and reusable stack pool utilities for parser workloads.
Documentation
  • Coverage
  • 100%
    18 out of 18 items documented6 out of 12 items with examples
  • Size
  • Source code size: 69.61 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.89 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 35s Average build duration of successful builds.
  • all releases: 35s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • EffortlessMetrics/adze
    0 0 11
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • EffortlessSteven

adze-stack-pool-core

Thread-local and reusable stack pool utilities for parser workloads.

Part of the adze workspace.

Usage

use adze_stack_pool_core::StackPool;

let pool: StackPool<u32> = StackPool::new(4);
let mut stack = pool.acquire();
stack.push(42);
pool.release(stack);

License

Licensed under either of Apache License, Version 2.0 or MIT License at your option.