impc:ti:get-generic-type-as-tuple   scheme


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

Implementation

(define impc:ti:get-generic-type-as-tuple
  (lambda (string-type)
    (set! string-type (impc:ir:pretty-print-type string-type))
    (let* ((a (impc:ti:maximize-generic-type string-type))
           (b (impc:ti:split-namedtype a))
           (t (impc:ir:get-type-from-pretty-str (cadr b))))
      t)))


Back to Index