I have the following code
type SomeInterface interface {
SomeFunc(int, string)
}
type IntStringFunc func(int, string)
func (f IntStringFunc) SomeFunc(i int, s string) {
f(i, s)
}
What is the syntax for invoking the method SomeFunc on the function type IntStringFunc?