-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
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
Allow heterogeneous arrays #676
Conversation
I like how the ANBF doesn't need to be updated for this. :P |
The intent of |
@lmna While that is technically true, I feel it's not bad to have a variety of examples on how arrays might be used – this included. |
I don't think waiting for folks to chime in here would do much. Let's go ahead and do this. :) |
Looks good, thanks for the work on this, everyone. |
if TOML11_USE_UNRELEASED_TOML_FEATURES is activated. In TOML v0.5.0, heterogenous arrays are not allowed. But after some discussions in toml-lang/toml, it is decided to allow it in the next release (toml-lang/toml/pull/676). To support it, disable type check in parse_array function.
Fixes #665.