impc:ti:unity?   scheme


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

Implementation

;; checks to see if a type system is completely unified
(define impc:ti:unity?
  (lambda (vars)
    (map (lambda (x)
           (if (impc:ir:type? (cdr x)) #t #f))
         vars)))


Back to Index