impc:ti:set-nativefunc-docstring   scheme


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

Implementation

(define impc:ti:set-nativefunc-docstring
  (lambda (nativefunc-name docstring)
    (let ((nfunc-data (assoc-strcmp nativefunc-name *impc:ti:nativefunc-cache*)))
      (if nfunc-data (vector-set! (cdr nfunc-data) 1 docstring) #f))))


Back to Index