BTreeMapIteratorKey, ValueNext Method |
Positions the iterator at the next KeyValuePair in the map. Only use this one with nullable Key type.
Namespace:
VelocityDb.Collection.BTree
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public KeyValuePair<Key, Value> Next()
Public Function Next As KeyValuePair(Of Key, Value)
public:
KeyValuePair<Key, Value> Next()
member Next : unit -> KeyValuePair<'Key, 'Value>
Return Value
Type:
KeyValuePairKey,
ValueThe next Key or null if we iterated past the the end of the set.
See Also