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
We got an error "cannot convert int to interface {}" from the code below:
var aa any err := conv.Convert(1, &aa) fmt.Println(err)
Consider support converting a value to any (the empty interface), just returns the cloned value like:
any
conv.ConvertType(value, reflect.TypeOf(value))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We got an error "cannot convert int to interface {}" from the code below:
Consider support converting a value to
any
(the empty interface), just returns the cloned value like:The text was updated successfully, but these errors were encountered: