SparseIndexWriterTKeyAdd Method
Adds the following node pointer to the sparse index.
Namespace: SnapDB.Snap.Tree.SpecializedAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void Add(
uint leftPointer,
TKey nodeKey,
uint pointer
)
Public Sub Add (
leftPointer As UInteger,
nodeKey As TKey,
pointer As UInteger
)
public:
void Add(
unsigned int leftPointer,
TKey nodeKey,
unsigned int pointer
)
function Add(leftPointer, nodeKey, pointer);
Parameters
- leftPointer UInt32
- The pointer to the left element, Only used to prime the list.
- nodeKey TKey
- the first key in the pointer. Only uses the key portion of the TKeyValue
- pointer UInt32
- the index of the later node
This class will add the new node data to the parent node,
or create a new root if the current root is split.