Variadic Over Struct //////////////
| 26 | |
| 27 | // ///////////// Variadic Over Struct ////////////// |
| 28 | type IntStrUct struct { |
| 29 | p int |
| 30 | } |
| 31 | |
| 32 | func NewIntStrUct(n int) IntStrUct { |
| 33 | return IntStrUct{ |
nothing calls this directly
no outgoing calls
no test coverage detected