impc:ti:xtmacro-exists?   scheme


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

Implementation

(define impc:ti:xtmacro-exists?
  (lambda (xtmacro-name)
    (if (and (string? xtmacro-name)
             (assoc-strcmp xtmacro-name *impc:ti:xtmacro-cache*))
        #t
        #f)))


Back to Index