IsEmpty checks whether the value is empty.
()
| 1337 | |
| 1338 | // IsEmpty checks whether the value is empty. |
| 1339 | func (v TempIndexValue) IsEmpty() bool { |
| 1340 | return len(v) == 0 |
| 1341 | } |
| 1342 | |
| 1343 | // Current returns the current latest temp index value. |
| 1344 | func (v TempIndexValue) Current() *TempIndexValueElem { |
no outgoing calls
no test coverage detected