Suppose that I have a function (define (f) ...) and a class: (define-class C () ((f) ...)) is there a way to access the global function f from within class C's methods? (I think this would be achievable in C++ by typing ::f, but I wonder whether Kawa has a similar mechanism)