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
I plan to make a new feature to support mapping between pointer and value
example:
type A struct{ Age int `mapper:"age"` } type B struct{ Age *int `mapper:"age"` } func main(){ a := A{Age:1} b := B{} m := mapper.NewMapper() m.Mapper(&a, &b) // now b.Age = 1 }
The text was updated successfully, but these errors were encountered:
devfeel
shyandsy
No branches or pull requests
I plan to make a new feature to support mapping between pointer and value
example:
The text was updated successfully, but these errors were encountered: