| 12 | ) |
| 13 | |
| 14 | type record struct { |
| 15 | f *os.File |
| 16 | r seq.Reader |
| 17 | t string |
| 18 | snf string |
| 19 | snp string |
| 20 | Index *Idx |
| 21 | } |
| 22 | |
| 23 | func NewRecordIndexer(f *os.File, nType string, snFormat string, snIndexPath string) Indexer { |
| 24 | return &record{ |
nothing calls this directly
no outgoing calls
no test coverage detected