heapless_graphs 0.2.3

Implementation of composable graphs for no_alloc environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: Apache-2.0

//! Provides limited traits to abstract container types
//!
//! Provides subset abstractions for containers that are used
//! in graph traversal algorithms.
//!
//! Note: None of those are required in the graph implementations,
//! only in the algorithms.

mod djb2hash;
pub mod maps;
pub mod probing;
pub mod queues;
pub mod sets;