FixedSizeNodeScannerTKey, TValueInternalReadWhile(TKey, TValue, TKey, MatchFilterBaseTKey, TValue) Method
Using
Pointer to advance to the next KeyValue.
Namespace: SnapDB.Snap.TreeAssembly: 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
)
Protected Overrides Function InternalReadWhile (
key As TKey,
value As TValue,
upperBounds As TKey,
filter As MatchFilterBase(Of TKey, TValue)
) As Boolean
protected:
virtual bool InternalReadWhile(
TKey key,
TValue value,
TKey upperBounds,
MatchFilterBase<TKey, TValue>^ filter
) override
function InternalReadWhile(key, value, upperBounds, filter);
- 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.
Booleantrue if advancement can still be made; otherwise,
false if iterations reached the end.