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
!!int64
https://play.golang.org/p/ecNPtvSD1U-
variables := make(map[string]interface{}) err := yaml.Unmarshal([]byte("v: !!int64 1"), &variables) if err != nil { panic(err) } fmt.Println("%#v", variables)
expected become error. because int64 is not defined on yaml spec. https://yaml.org/spec/1.2.2/#10213-integer
int64
actual ignored.
The text was updated successfully, but these errors were encountered:
Thank you for your reporting ! Sorry for the late reply, but I'll fix this problem.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
https://play.golang.org/p/ecNPtvSD1U-
expected
become error. because
int64
is not defined on yaml spec. https://yaml.org/spec/1.2.2/#10213-integeractual
ignored.
The text was updated successfully, but these errors were encountered: