We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's have
data Foo = Foo { foo1 :: Int , foo2 :: String } data Bar = Bar { bar1 :: Int , bar2 :: Foo }
I'd like to have CSV for Bar:
Bar
bar1, foo1, foo2 1, 1, "foo"
How can I do that? Maybe with nested records too, avoiding boilerplate code, using generics, etc .
P. S. Realization could add a new encoding option in EncodeOptions.
EncodeOptions
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's have
I'd like to have CSV for
Bar
:How can I do that? Maybe with nested records too, avoiding boilerplate code, using generics, etc .
P. S. Realization could add a new encoding option in
EncodeOptions
.The text was updated successfully, but these errors were encountered: