impc:ti:namedtype-exists?   scheme


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

Implementation

(define impc:ti:namedtype-exists?
  (lambda (namedtype-name)
    (let ((res (impc:ti:get-namedtype-type namedtype-name)))
      (if (and res (not (null? res))) #t #f))))


Back to Index