impc:ir:convert-types   scheme


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

Implementation

(define impc:ir:convert-types
  (lambda (t)
                                        ;(print 't: t)
    (if (null? t) '()
        (if (atom? t)
            (impc:ir:get-type-from-str (sexpr->string t))
            (map (lambda (t)
                   (impc:ir:convert-types t))
                 t)))))


Back to Index