Class FrozenBTreeSeekableIterator<TKey, TValue>
Inheritance
FrozenBTreeSeekableIterator<TKey, TValue>
Assembly: ZoneTree.dll
Syntax
public sealed class FrozenBTreeSeekableIterator<TKey, TValue> : ISeekableIterator<TKey, TValue>
Type Parameters
Name |
Description |
TKey |
|
TValue |
|
Constructors
|
Improve this Doc
View Source
FrozenBTreeSeekableIterator(BTree<TKey, TValue>)
Declaration
public FrozenBTreeSeekableIterator(BTree<TKey, TValue> bTree)
Parameters
Type |
Name |
Description |
BTree<TKey, TValue> |
bTree |
|
Properties
|
Improve this Doc
View Source
CurrentKey
Declaration
public TKey CurrentKey { get; }
Property Value
|
Improve this Doc
View Source
CurrentValue
Declaration
public TValue CurrentValue { get; }
Property Value
|
Improve this Doc
View Source
HasCurrent
Declaration
public bool HasCurrent { get; }
Property Value
|
Improve this Doc
View Source
IsBeginningOfAPart
Declaration
public bool IsBeginningOfAPart { get; }
Property Value
|
Improve this Doc
View Source
IsEndOfAPart
Declaration
public bool IsEndOfAPart { get; }
Property Value
|
Improve this Doc
View Source
IsFullyFrozen
Declaration
public bool IsFullyFrozen { get; }
Property Value
Methods
|
Improve this Doc
View Source
GetPartIndex()
Declaration
public int GetPartIndex()
Returns
|
Improve this Doc
View Source
Next()
Declaration
Returns
|
Improve this Doc
View Source
Prev()
Declaration
Returns
|
Improve this Doc
View Source
SeekBegin()
Declaration
Returns
|
Improve this Doc
View Source
SeekEnd()
Declaration
Returns
|
Improve this Doc
View Source
SeekToFirstGreaterOrEqualElement(in TKey)
Declaration
public bool SeekToFirstGreaterOrEqualElement(in TKey key)
Parameters
Type |
Name |
Description |
TKey |
key |
|
Returns
|
Improve this Doc
View Source
SeekToLastSmallerOrEqualElement(in TKey)
Declaration
public bool SeekToLastSmallerOrEqualElement(in TKey key)
Parameters
Type |
Name |
Description |
TKey |
key |
|
Returns
|
Improve this Doc
View Source
Skip(long)
Declaration
public void Skip(long offset)
Parameters
Type |
Name |
Description |
long |
offset |
|
Implements