iterator add skip
This commit is contained in:
parent
2dd6408d57
commit
8a593bd360
|
@ -136,6 +136,14 @@ func (it *Iterator) Next() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (it *Iterator) Skip(offset int64) {
|
||||||
|
for i := 0; i < offset; i++ {
|
||||||
|
if it.Valid() {
|
||||||
|
it.Next()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (it *Iterator) Key() []byte {
|
func (it *Iterator) Key() []byte {
|
||||||
return it.it.Key()
|
return it.it.Key()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue