NewDecoder reads the given index file, which usually has a .par2 extension.
(delegate DecoderDelegate, indexFile string, numGoroutines int)
| 734 | // NewDecoder reads the given index file, which usually has a .par2 |
| 735 | // extension. |
| 736 | func NewDecoder(delegate DecoderDelegate, indexFile string, numGoroutines int) (*Decoder, error) { |
| 737 | return newDecoder(defaultFileIO{}, delegate, indexFile, numGoroutines) |
| 738 | } |
nothing calls this directly
no test coverage detected