impc:ti:get-nativefunc-type   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/llvmti.xtm

Implementation

(define impc:ti:get-nativefunc-type
  (lambda (nativefunc-name)
    (let ((nfunc-data (assoc-strcmp nativefunc-name *impc:ti:nativefunc-cache*)))
      (if nfunc-data (vector-ref (cdr nfunc-data) 0) #f))))


Back to Index