Beispiel #1
0
            public ImmTree Build()
            {
                var tree = _tree;

                _tree = null;
                return(tree);
            }
Beispiel #2
0
 public Builder WithLeft(ImmTree left)
 {
     _tree.Left = left;
     return(this);
 }
Beispiel #3
0
 public Builder()
 {
     _tree = new ImmTree();
 }