sim-expr-tree-core 0.1.0

Finite namespace, policy, and storage records for SIM expression trees.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use sim_table_core::{TablePath, TablePathRef, TablePathRefError};

/// Resolve a canonical expression-tree namespace reference.
///
/// This crate deliberately reuses `sim-table-core` path references and does not
/// define a local path parser.
pub fn resolve_namespace_path(
    base: &TablePath,
    reference: &TablePathRef,
) -> Result<TablePath, TablePathRefError> {
    base.resolve(reference)
}