impc:ti:get-nativefunc-arg-names   scheme


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

Implementation

(define impc:ti:get-nativefunc-arg-names
  (lambda (nativefunc-name)
    (let ((nativefunc-data (assoc-strcmp nativefunc-name *impc:ti:nativefunc-cache*)))
      (if nativefunc-data (vector-ref (cdr nativefunc-data) 2) #f))))


Back to Index