bctx-weave 0.1.27

bctx-weave — FilterMesh lens pipeline, CLI interception, domain compression
Documentation
1
2
3
4
5
6
7
use super::node::MeshNode;
use super::registry::FilterMesh;

/// Resolve a command string to the matching MeshNode (borrow from mesh).
pub fn resolve<'a>(mesh: &'a FilterMesh, program: &str, args: &[String]) -> Option<&'a MeshNode> {
    mesh.find(program, args)
}