Root

The root node.

Constructors

this
this(T t)
Undocumented in source.

Members

Functions

opCall
auto opCall(U args)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

member
T member;
Undocumented in source.

Examples

static assert(
	__traits(
		compiles, Root!(
			Sequence!(
				Action!((Leaf!Ternary), process), 
				Condition!(Leaf!bool), 
				Selector!(
					Decorator!(Condition!(Leaf!bool), Not), 
					Action!((Leaf!Ternary), process)
				)
			)
		)
	)
);

Meta