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
Hi Big Yuuta,
Kudos! Great Work!
One minor style change I would like to request in your interface section for interface method(s) which return a boolean.
You write : `
func (g HumanGroup) Less(i, j int) bool { if g[i].age < g[j].age { return true } return false }
` But the following is more concise, cleaner and is inline with Golang Idiom:
` func (g HumanGroup) Less(i, j int) bool { return g[i].age < g[j].age } `
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Big Yuuta,
Kudos! Great Work!
One minor style change I would like to request in your interface section for interface method(s) which return a boolean.
You write :
`
`
But the following is more concise, cleaner and is inline with Golang Idiom:
The text was updated successfully, but these errors were encountered: