advent_of_code_2024::day_19

Type Alias PatternTreeNodeRef

source
type PatternTreeNodeRef = Rc<RefCell<PatternTreeNode>>;
Expand description

The reference used by a node to refer to its children, and to hold a ref back to the root node in the recursive matchers.

Aliased Typeยง

struct PatternTreeNodeRef { /* private fields */ }