impc:ti:get-polytype-candidate-types   scheme


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

Implementation

;; remap impc:ir:polytype-types - should return list types for all
;; options
(define impc:ti:get-polytype-candidate-types
  (lambda (polytype-name)
    (let ((candidates (impc:ti:get-polytype-candidate-list polytype-name)))
      (and candidates
           (map (lambda (func-vector) (vector-ref func-vector 1)) candidates)))))


Back to Index