| 8 | type Struct struct{ X, Y, Z float32 } |
| 9 | type Array [3]float32 |
| 10 | type ArrayStruct struct{ _0, _1, _2 float32 } |
| 11 | |
| 12 | func (a Struct) Add(b Struct) Struct { return Struct{a.X + b.X, a.Y + b.Y, a.Z + b.Z} } |
| 13 | func (a Array) Add(b Array) Array { |
nothing calls this directly
no outgoing calls
no test coverage detected