abstract class BTreeIterator<K, V>
<init> |
BTreeIterator(m: BTreeMap<K, V>) |
currentLeaf |
var currentLeaf: Node? |
currentPos |
var currentPos: Int |
lastReturnedKey |
var lastReturnedKey: K? |
m |
val m: BTreeMap<K, V> |
advance |
fun advance(): Unit |
hasNext |
fun hasNext(): Boolean |
remove |
fun remove(): Unit |