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
// SPDX-License-Identifier: Apache-2.0

//! Edge list graphs
//!
//! This module provides edge list graph structures implementing the
//! [`Graph`] and [`GraphWithEdgeValues`] traits.
//!
//! [`Graph`]: crate::graph::Graph
//! [`GraphWithEdgeValues`]: crate::graph::GraphWithEdgeValues

pub mod edge_list;
pub mod edge_node_list;