SortedTreeNodeBaseTKey, TValueCanCombineWithSiblings Method

Determines which sibling node that this node can be combined with.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void CanCombineWithSiblings(
	TKey key,
	out bool canCombineLeft,
	out bool 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.

See Also