Say I have a function foo, and then an extension f...
# announcements
o
Say I have a function foo, and then an extension function to some type T, T.foo. Both having the same parameter list. Is there any easy way of calling the regular function from within the extension function? Just calling foo() will be equivalent to this.foo(), thereby a call to the extension function.