()
| 361 | } |
| 362 | |
| 363 | func (is *indexSection) Len() int { |
| 364 | if is.bytes == nil { |
| 365 | panic("indexSection must be Finalize()-d before calling Len()") |
| 366 | } |
| 367 | return len(is.bytes) |
| 368 | } |
| 369 | |
| 370 | func (is *indexSection) WriteTo(w io.Writer) (int64, error) { |
| 371 | if is.bytes == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected