impc:ti:get-globalvar-docstring   scheme


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

Implementation

(define impc:ti:get-globalvar-docstring
  (lambda (globalvar-name)
    (let ((globalvar-data (assoc-strcmp globalvar-name *impc:ti:globalvar-cache*)))
      (if globalvar-data (vector-ref (cdr globalvar-data) 1) #f))))


Back to Index