public ImmTree Build() { var tree = _tree; _tree = null; return(tree); }
public Builder WithLeft(ImmTree left) { _tree.Left = left; return(this); }
public Builder() { _tree = new ImmTree(); }