impc:ti:typealias-exists?   scheme


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

Implementation

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


Back to Index