ReaderAt interface that is compatiable with os.File types.
| 63 | |
| 64 | // ReaderAt interface that is compatiable with os.File types. |
| 65 | type ReaderAt interface { |
| 66 | SectionReader |
| 67 | Stat() (os.FileInfo, error) |
| 68 | Close() error |
| 69 | } |
| 70 | |
| 71 | // multifd contains file boundary information |
| 72 | type multifd struct { |
no outgoing calls
no test coverage detected