FixedSizeNodeScannerTKey, TValueInternalReadWhile(TKey, TValue, TKey, MatchFilterBaseTKey, TValue) Method

Using Pointer to advance to the next KeyValue.

Definition

Namespace: SnapDB.Snap.Tree
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
protected override bool InternalReadWhile(
	TKey key,
	TValue value,
	TKey upperBounds,
	MatchFilterBase<TKey, TValue>? filter
)

Parameters

key  TKey
The next key to advance to.
value  TValue
The next value to advance to.
upperBounds  TKey
The highest key that can be advanced to - stop when reached.
filter  MatchFilterBaseTKey, TValue
The filter to abide by during the advancement for matching key-value pairs.

Return Value

Boolean
true if advancement can still be made; otherwise, false if iterations reached the end.

See Also