miller/pkg/transformers
Stephen Kitt 7a0320fc27
Typo fix: programmatically (#1679)
Signed-off-by: Stephen Kitt <steve@sk2.org>
2024-10-06 17:30:12 -04:00
..
utils
aaa_chain_transformer.go
aaa_record_transformer.go
aaa_transformer_table.go
altkv.go
bar.go
bootstrap.go
case.go
cat.go
check.go
clean_whitespace.go
count.go
count_similar.go
cut.go
decimate.go
doc.go
fill_down.go
fill_empty.go
flatten.go
format_values.go
fraction.go
gap.go
grep.go
group_by.go
group_like.go
having_fields.go
head.go
histogram.go
join.go
json_parse.go
json_stringify.go
label.go
latin1_to_utf8.go
merge_fields.go
most_or_least_frequent.go
nest.go
nothing.go
put_or_filter.go Typo fix: programmatically (#1679) 2024-10-06 17:30:12 -04:00
README.md
regularize.go
remove_empty_columns.go
rename.go Fix 1668 error-source (#1672) 2024-10-05 09:25:47 -04:00
reorder.go
repeat.go
reshape.go
sample.go
sec2gmt.go
sec2gmtdate.go
seqgen.go
shuffle.go
skip_trivial_records.go
sort.go
sort_within_records.go
sparsify.go
split.go
stats1.go Update source material for #1665 (#1666) 2024-10-02 08:46:27 -04:00
stats2.go
step.go
subs.go
summary.go
tac.go
tail.go
tee.go
template.go
top.go
unflatten.go
uniq.go
unspace.go
unsparsify.go
utf8_to_latin1.go

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

  • The IRecordTransformer abstract record-transformer interface datatype, as well as the ChainTransformer Go-channel chaining mechanism for piping one transformer into the next.
  • The transformer lookup table, used for Miller command-line parsing, verb construction, and online help.
  • All the concrete record-transformers such as cat, tac, sort, put, and so on.