-
Notifications
You must be signed in to change notification settings - Fork 808
New issue
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
nullable, optional fields and has_ #49
Comments
Yes that is true. |
Well, nullable = true is not for Go, because GC. But I understand your reluctance for adding setters. |
Do you think you would like to use setters? |
When setting
nullable = false
for a field, we can't say whether optional field is set or not. But we could generate additional fieldhas_<field_name> bool
that says whether field is set or not.The text was updated successfully, but these errors were encountered: