Created
August 27, 2017 09:08
-
-
Save syossan27/ce91f38ce486ea7252d5b1d52de361af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| type MyStruct struct { | |
| Int64 int64 | |
| StringPtr *string | |
| } | |
| func (this *MyStruct) Equal(that *MyStruct) bool { | |
| return deriveEqual(this, that) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment