Beispiel #1
0
 public LeafNode(Node[] children, IBTreeLeaf leaf)
     : base(children)
 {
     mLeaf = leaf;
 }
Beispiel #2
0
 public IBTreeBuilder Leaf(IBTreeLeaf leaf)
 {
     return(new Builder(this, () => new LeafNode(null, leaf)));
 }