In f#, type inference suffers badly when calling methods on an instance of a class initiated outside of the function in question.
I wonder if
quotations would allow a general function "xx" to create functions "xxmethodname" such that:
xx -> instance.methodname -> xxmethodname
xxmethodname instance [args] = instance.methodname [args]
and if so how the
(
Read more... )