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
Hi,
should it be possible to save tuple-like types of unknown size?
Currently, this is not working:
using JLD2 T = NTuple{N, Int} where N jldsave("test.jld2", myT = T)
but giving the following stacktrace.txt
Interestingly, this way it works:
struct test_workaround a::(NTuple{N,Int} where N) end jldsave("test.jld2", a=test_workaround)
while this is again giving the same error:
struct test{X<:(NTuple{N,Int} where N)} a::X end jldsave("test.jld2", a=test)
(This issue is closely related to oschulz/ValueShapes.jl#62)
The text was updated successfully, but these errors were encountered:
You are right, that should probably be possible.
Sorry, something went wrong.
fixed by #519
No branches or pull requests
Hi,
should it be possible to save tuple-like types of unknown size?
Currently, this is not working:
but giving the following stacktrace.txt
Interestingly, this way it works:
while this is again giving the same error:
(This issue is closely related to oschulz/ValueShapes.jl#62)
The text was updated successfully, but these errors were encountered: