#lots #pool #storing #object #structure #items #fragmenting

armory

a fast pool for storing lots of objects of one type without fragmenting

1 unstable release

0.1.0 Jan 10, 2024

#431 in Memory management

MIT license

13KB
295 lines

Armory

a fast pool for storing lots of objects of one type without fragmenting

How to Use

This is a Rust library, available through crates.io. To install in your project, add it to your Cargo.toml as a dependency:

[dependencies]
armory = "0.1.0"

Or run the following command from within your project directory:

cargo add armory

lib.rs:

a data structure that enables quick random access/insertion/removal of unordered items without reallocating or shifting elements

No runtime deps