I want to have a `func: T.(String) -> Unit` as ...
# getting-started
d
I want to have a
func: T.(String) -> Unit
as a member of a class of type T, how do I call it on this?
this.func(string)
giving me "required T, found String". I assume because the
this
is being used for variable lookup rather than "dispatch"?