NodeTKeyCreateNewNode Method
Creates a new node with the provided data.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected void CreateNewNode(
uint nodeIndex,
ushort recordCount,
ushort validBytes,
uint leftSibling,
uint rightSibling,
TKey lowerKey,
TKey upperKey
)
Protected Sub CreateNewNode (
nodeIndex As UInteger,
recordCount As UShort,
validBytes As UShort,
leftSibling As UInteger,
rightSibling As UInteger,
lowerKey As TKey,
upperKey As TKey
)
protected:
void CreateNewNode(
unsigned int nodeIndex,
unsigned short recordCount,
unsigned short validBytes,
unsigned int leftSibling,
unsigned int rightSibling,
TKey lowerKey,
TKey upperKey
)
function CreateNewNode(nodeIndex, recordCount, validBytes, leftSibling, rightSibling, lowerKey, upperKey);
Parameters
- nodeIndex UInt32
- The index of the new node.
- recordCount UInt16
- The record count for the new node.
- validBytes UInt16
- The valid bytes count for the new node.
- leftSibling UInt32
- The index of the left sibling node.
- rightSibling UInt32
- The index of the right sibling node.
- lowerKey TKey
- The lower key for the new node.
- upperKey TKey
- The upper key for the new node.