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
When I have data CommandForBench = BenchCommandConnectGUI decode (encode BenchCommandConnectGUI) gives Nothing.
When I change to data CommandForBench = BenchCommandConnectGUI () everything works as expected.
Cheers Jürgen
The text was updated successfully, but these errors were encountered:
49befca
Thanks, @basvandijk!
Sorry, something went wrong.
I should add a detailed example . Hope I can do the next days. Am 21.01.2012 23:33 schrieb "Bryan O'Sullivan" < reply@reply.github.com
:
Fixed haskell#62.
613cf61
Nullary constructors are encoded as an empty array. The syb code wrongfully assumed they were encoded as Null.
basvandijk
No branches or pull requests
When I have
data CommandForBench = BenchCommandConnectGUI
decode (encode BenchCommandConnectGUI) gives Nothing.
When I change to
data CommandForBench = BenchCommandConnectGUI ()
everything works as expected.
Cheers
Jürgen
The text was updated successfully, but these errors were encountered: