SortedTreeScannerBaseTKey, TValueReadBackwardish Method
Reads the key-value pair backwardish (in reverse order) from the tree node.
Namespace: SnapDB.Snap.TreeAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public bool ReadBackwardish(
TKey key,
TValue value
)
Public Function ReadBackwardish (
key As TKey,
value As TValue
) As Boolean
public:
bool ReadBackwardish(
TKey key,
TValue value
)
function ReadBackwardish(key, value);
- key TKey
- The key to read.
- value TValue
- The value to read.
Booleantrue if there are more records to read; otherwise,
false.
Note: This method will read each leaf node in reverse order. However, each leaf itself will be sorted
ascending, only when moving from leaf node to leave node will this occur in reverse order.
Note: This functionality should be used only to inspect the contests of a file, and not be
used to attempt supporting reverse readings of files.