multiReaderAt is private struct for the multi-file ReaderAt that provides the ablity to use indexes with vitrual files.
| 78 | // multiReaderAt is private struct for the multi-file ReaderAt |
| 79 | // that provides the ablity to use indexes with vitrual files. |
| 80 | type multiReaderAt struct { |
| 81 | readers []ReaderAt |
| 82 | boundaries []multifd |
| 83 | size int64 |
| 84 | } |
| 85 | |
| 86 | // MultiReaderAt returns a ReaderAt that's the logical concatenation of |
| 87 | // the provided input readers. BUG / KNOW-ISSUE: all file handles are opened |
nothing calls this directly
no outgoing calls
no test coverage detected