impc:ti:set-closure-docstring   scheme


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

Implementation

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


Back to Index