depends 0.11.0

Ergonomic, performant, incremental computation between arbitrary types
Documentation
1
2
3
4
5
6
use std::cell::Ref;

use crate::NodeState;

/// Short-hand for the output read-reference of a node.
pub type NodeRef<'a, T> = Ref<'a, NodeState<T>>;