BplusDotNet.BplusTree.BplusTree C# (CSharp) Method

BplusTree() public method

public BplusTree ( ITreeIndex tree ) : System
tree ITreeIndex
return System
        public BplusTree(ITreeIndex tree)
        {
            if (!(tree is BplusTreeBytes) && this.checkTree())
            {
                throw new BplusTreeException("Bplustree (superclass) can only wrap BplusTreeBytes, not other ITreeIndex implementations");
            }
            this.tree = tree;
        }