OpenFS is the version of [IndexView.OpenCSV] that uses an [fs.FS] filesystem.
(fsys fs.FS, filename string, delim Delims)
| 143 | |
| 144 | // OpenFS is the version of [IndexView.OpenCSV] that uses an [fs.FS] filesystem. |
| 145 | func (ix *IndexView) OpenFS(fsys fs.FS, filename string, delim Delims) error { |
| 146 | err := ix.Table.OpenFS(fsys, filename, delim) |
| 147 | ix.Sequential() |
| 148 | return err |
| 149 | } |
| 150 | |
| 151 | // ReadCSV reads a table from a comma-separated-values (CSV) file |
| 152 | // (where comma = any delimiter, specified in the delim arg), |
nothing calls this directly
no test coverage detected