fluidattacks-blends-domain 0.6.1

Blends functional core: pure AST graph to syntax graph (no_std)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Counterpart of `blends/path_search/`.

use alloc::vec::Vec;

use crate::NodeId;

pub mod search;
pub mod utils;

pub use utils::{get_backward_paths, iter_backward_paths};

pub const RECURSION_LIMIT: usize = 100;

pub type Path = Vec<NodeId>;