mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
| .. | ||
| chain_transformer.go | ||
| README.md | ||
| record_transformer.go | ||
Logic for transforming input records into output records as requested by the user (sort, filter, etc.).
src/transformingcontains the abstract record-transformer interface datatype, as well as the Go-channel chaining mechanism for piping one transformer into the next.src/transformersis all the concrete record-transformers such ascat,tac,sort,put, and so on. I put it here, not intransforming, so all files intransformerswould be of the same type.