pub fn isSupportedTransformation(input: Options.InputFormat, output: Options.OutputFormat) bool
pub fn isSupportedTransformation(input: Options.InputFormat, output: Options.OutputFormat) bool { return switch (input) { .rc => switch (output) { .res => true, .coff => true, .rcpp => true, }, .res => switch (output) { .res => false, .coff => true, .rcpp => false, }, .rcpp => switch (output) { .res => true, .coff => true, .rcpp => false, }, }; }