| 69 | } |
| 70 | |
| 71 | type SkipListIterator struct { |
| 72 | currIndex int |
| 73 | reverse bool |
| 74 | values []*Item |
| 75 | } |
| 76 | |
| 77 | // NewSkipListIterator Initializes the SkipList index iterator |
| 78 | func NewSkipListIterator(sl *SkipList, reverse bool) *SkipListIterator { |
nothing calls this directly
no outgoing calls
no test coverage detected