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

//! Adjacency list graphs
//!
//! This module provides adjacency list graph structures that
//! implement the [`Graph`] trait.
//!
//! [`Graph`]: crate::graph::Graph

pub mod map_adjacency_list;
pub mod slice_adjacency_list;