FileSectionHandle opens a file and reads a section of it with optional padding. It implements the ReadOpenCloser interface.
| 101 | // FileSectionHandle opens a file and reads a section of it with optional |
| 102 | // padding. It implements the ReadOpenCloser interface. |
| 103 | FileSectionHandle struct { |
| 104 | fh *FileHandle |
| 105 | sec *SectionHandle |
| 106 | } |
| 107 | // ByteHandle is a byte buffer(made from []byte) that implements |
| 108 | // ReadOpenCloser interface |
| 109 | ByteHandle struct { |
nothing calls this directly
no outgoing calls
no test coverage detected