12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package iterator
- type ConstIterator interface {
- IsValid() bool
- Next() ConstIterator
- Value() interface{}
- Clone() ConstIterator
- Equal(other ConstIterator) bool
- }
- type Iterator interface {
- ConstIterator
- SetValue(value interface{})
- }
- type ConstKvIterator interface {
- ConstIterator
- Key() interface{}
- }
- type KvIterator interface {
- ConstKvIterator
- SetValue(value interface{})
- }
- type ConstBidIterator interface {
- ConstIterator
- Prev() ConstBidIterator
- }
- type BidIterator interface {
- ConstBidIterator
- SetValue(value interface{})
- }
- type ConstKvBidIterator interface {
- ConstKvIterator
- Prev() ConstBidIterator
- }
- type KvBidIterator interface {
- ConstKvIterator
- Prev() ConstBidIterator
- SetValue(value interface{})
- }
- type RandomAccessIterator interface {
- BidIterator
-
- IteratorAt(position int) RandomAccessIterator
- Position() int
- }
|