From the golang spec
// A struct with 6 fields.
struct {
x, y int
u float32
_ float32 // padding
A *[]int
F func()
}
- Are there any practical scenarios of using the blank
_
fields inside astruct
? (some code snippets would be appreciated)