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
This code panics. (I was trying to marshal a docker container config object that has this construct)
package main import ( "gopkg.in/yaml.v2" ) type Config struct { ConsoleSize [2]int } func main() { c := &Config{ConsoleSize: [2]int{10, 20}} yaml.Marshal(c) }
The text was updated successfully, but these errors were encountered:
Encode and decode arrays.
2aba0a4
Closes #20, #130, #143, #221, #259, #260.
That's been fixed by the commit above.
Sorry, something went wrong.
No branches or pull requests
This code panics. (I was trying to marshal a docker container config object that has this construct)
The text was updated successfully, but these errors were encountered: