SortedTreeNodeBaseTKey, TValueCanCombineWithSiblings Method
Determines which sibling node that this node can be combined with.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void CanCombineWithSiblings(
TKey key,
out bool canCombineLeft,
out bool canCombineRight
)
Public Sub CanCombineWithSiblings (
key As TKey,
<OutAttribute> ByRef canCombineLeft As Boolean,
<OutAttribute> ByRef canCombineRight As Boolean
)
public:
void CanCombineWithSiblings(
TKey key,
[OutAttribute] bool% canCombineLeft,
[OutAttribute] bool% canCombineRight
)
function CanCombineWithSiblings(key, canCombineLeft, canCombineRight);
Parameters
- key TKey
- The key of the child node that needs to be checked.
- canCombineLeft Boolean
- Outputs true if combining with the left child is supported; otherwise, false.
- canCombineRight Boolean
- Outputs true if combining with the right child is supported; otherwise, false.