Value returns the member pointed by iter
()
| 80 | |
| 81 | // Value returns the member pointed by iter |
| 82 | func (siter *SetIter) Value() []byte { |
| 83 | res := siter.Iter.Key()[len(siter.Prefix):] |
| 84 | return res |
| 85 | } |
| 86 | |
| 87 | // Valid judgies whether the key directed by iter has the same prifix |
| 88 | func (siter *SetIter) Valid() bool { |
no outgoing calls
no test coverage detected