You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have method expressions of form Type.Method.
This is a wishlist bug for method expressions that curry the receiver, of form
receiver.Method.
type A struct {
// ...
}
func (a *A) Foo(bar, baz int) {}
b := new(A)
foob := b.Foo // foob is of type func(int, int)