Variadic Over Interface //////////////
| 45 | |
| 46 | // ///////////// Variadic Over Interface ////////////// |
| 47 | type IntInterFace interface { |
| 48 | Number() int |
| 49 | } |
| 50 | |
| 51 | func (is *IntStrUct) Number() int { |
| 52 | return is.p |
no outgoing calls
no test coverage detected