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
According to yaml 1.1 operator "<<" is used to merge keys pls see: https://yaml.org/type/merge.html
for input:
<<: {A: 1, B: 2} A: 0
should be:
{ "A": 0, "B": 2 }
and it is:
{"<<": {"A": 0, "B": 2}, "A": 0 }
I'm not sure is it fortran-yaml-c or underlying c library.
The text was updated successfully, but these errors were encountered:
Ok, it's not part of the standard yaml/libyaml#168
Sorry, something went wrong.
Ok, so we have to wait until libyaml is fixed.
No branches or pull requests
According to yaml 1.1 operator "<<" is used to merge keys pls see:
https://yaml.org/type/merge.html
for input:
should be:
and it is:
I'm not sure is it fortran-yaml-c or underlying c library.
The text was updated successfully, but these errors were encountered: