miller/pkg/input
John Kerl 7da6f1453d
Replace list.List with Go slices (#1950)
* Add .vscode to .gitignore

* Replace `list.List` with slices
2026-02-01 17:22:28 -05:00
..
constants.go Separate out ILineReader abstraction (#1504) 2024-02-24 22:07:56 -05:00
doc.go Export library code in pkg/ (#1391) 2023-09-10 17:15:13 -04:00
line_reader.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
pseudo_reader_gen.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
README.md Export library code in pkg/ (#1391) 2023-09-10 17:15:13 -04:00
record_reader.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_benchmark_test.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_csv.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_csvlite.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_dkvp_nidx.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_dkvp_test.go The package version must match the major tag version (#1654) 2024-09-20 12:10:11 -04:00
record_reader_factory.go The package version must match the major tag version (#1654) 2024-09-20 12:10:11 -04:00
record_reader_json.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_markdown.go The package version must match the major tag version (#1654) 2024-09-20 12:10:11 -04:00
record_reader_pprint.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_tsv.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
record_reader_xtab.go Replace list.List with Go slices (#1950) 2026-02-01 17:22:28 -05:00
splitters.go The package version must match the major tag version (#1654) 2024-09-20 12:10:11 -04:00

Logic for parsing disk-file/standard-input byte streams into records.

There is one record-reader type per supported input file format, and a factory method.