| 127 | } |
| 128 | |
| 129 | type bptreeIterator struct { |
| 130 | tx *bbolt.Tx |
| 131 | cursor *bbolt.Cursor |
| 132 | reverse bool |
| 133 | currKey []byte |
| 134 | currVal []byte |
| 135 | } |
| 136 | |
| 137 | var _ Iterator = (*bptreeIterator)(nil) |
| 138 |
nothing calls this directly
no outgoing calls
no test coverage detected