| 236 | } |
| 237 | |
| 238 | type xorIterator struct { |
| 239 | br bstreamReader |
| 240 | numTotal uint16 |
| 241 | numRead uint16 |
| 242 | |
| 243 | t int64 |
| 244 | val float64 |
| 245 | |
| 246 | leading uint8 |
| 247 | trailing uint8 |
| 248 | |
| 249 | tDelta uint64 |
| 250 | err error |
| 251 | } |
| 252 | |
| 253 | func (it *xorIterator) Seek(t int64) ValueType { |
| 254 | if it.err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected