Metamorphosis icon indicating copy to clipboard operation
Metamorphosis copied to clipboard

TemplateHaskell functions to generate types and converter function.

Results 3 Metamorphosis issues
Sort by recently updated
recently updated
newest added

Hi, The library looks useful. In my case I want to use Metamorphosis to shrink output only fields from BigQuery types. e.g. https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets#resource:-dataset. A big product type such as Dataset...

Going by [this example](https://github.com/maxigit/Metamorphosis/blob/3b67935c44eecc87bf42e72e58be5e5556049679/test/ExampleSpec.hs#L17-L60) would it be possible to generate the following function via TH: ``` iStyleToProduct :: Style -> String -> Int -> Product iStyleToProduct style variation qty =...

enhancement