Skip to main content

ember_plus/tree/
mod.rs

1//! Ember+ tree data structures.
2//!
3//! This module provides the runtime tree representation for Ember+ providers
4//! and consumers, with support for efficient lookup and modification.
5
6mod node;
7mod walker;
8
9pub use node::{EmberTree, TreeNode, TreeNodeRef, NodeContents};
10pub use walker::TreeWalker;