sparse_set 0.8.2

Implementation of the sparse set data structure
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A crate that implements the sparse set data structure.
//!
//! See [this article](https://research.swtch.com/sparse) on more details behind the data structure.

#![cfg_attr(coverage_nightly, feature(no_coverage))]
#![feature(allocator_api)]
#![feature(impl_trait_in_assoc_type)]

#[cfg(feature = "arbitrary")]
pub mod arbitrary;

pub mod index;
pub mod sparse_set;
pub mod sparse_vec;

pub use crate::{index::SparseSetIndex, sparse_set::SparseSet, sparse_vec::SparseVec};