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


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

Implementation

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


Back to Index