Closed arthurgustin closed 4 years ago
Hi, I have a use-case where I use *null.Int in my structures because I want to hide them during json Marshalling, what do you think ?
*null.Int
Clever solution but if you're going to do this I think you might as well just use *int instead of *null.Int. Feel free to fork if you disagree.
*int
Hi, I have a use-case where I use
*null.Int
in my structures because I want to hide them during json Marshalling, what do you think ?