SparseIndexTKeyAdd Method
Adds the following node pointer to the sparse index.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void Add(
TKey nodeKey,
uint pointer,
byte level
)
Public Sub Add (
nodeKey As TKey,
pointer As UInteger,
level As Byte
)
public:
void Add(
TKey nodeKey,
unsigned int pointer,
unsigned char level
)
function Add(nodeKey, pointer, level);
Parameters
- nodeKey TKey
- the first key in the pointer. Only uses the key portion of the TKeyValue
- pointer UInt32
- the index of the later node
- level Byte
- the level of the node being added
This class will add the new node data to the parent node,
or create a new root if the current root is split.