ReaderAt extends the standard io.ReaderAt interface with reporting of Size and io.Closer
| 47 | |
| 48 | // ReaderAt extends the standard io.ReaderAt interface with reporting of Size and io.Closer |
| 49 | type ReaderAt interface { |
| 50 | io.ReaderAt |
| 51 | io.Closer |
| 52 | Size() int64 |
| 53 | } |
| 54 | |
| 55 | // Provider provides a reader interface for specific content |
| 56 | type Provider interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…