miller/go/src/transforming
2021-02-14 15:01:15 -05:00
..
chain_transformer.go go.mod attempt 2021-02-14 01:13:24 -05:00
README.md more of same 2021-02-14 01:25:32 -05:00
record_transformer.go move usage before parse-CLI funcs in all verbs 2021-02-14 15:01:15 -05:00

Logic for transforming input records into output records as requested by the user (sort, filter, etc.).

  • src/transforming contains the abstract record-transformer interface datatype, as well as the Go-channel chaining mechanism for piping one transformer into the next.
  • src/transformers is all the concrete record-transformers such as cat, tac, sort, put, and so on. I put it here, not in transforming, so all files in transformers would be of the same type.