miller/pkg/input
John Kerl daae7ff7f0
Add DCF (Debian Control Format) as supported file type (#1970)
* reader

* record writer

* pkg/output/record_writer_dcf.go

* test/input/test.dcf

* test/cases/io-dcf/

* pkg/cli/option_parse.go

* make fmt

* make dev

* docs and `make dev`
2026-02-16 11:10:39 -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_dcf.go Add DCF (Debian Control Format) as supported file type (#1970) 2026-02-16 11:10:39 -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 Add DCF (Debian Control Format) as supported file type (#1970) 2026-02-16 11:10:39 -05:00
record_reader_json.go Resolve a few to-do comments in the source code (#1951) 2026-02-01 18:14:20 -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
record_reader_yaml.go Support YAML I/O (#1963) 2026-02-15 09:24:38 -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.