impc:ti:get-polyfunc-candidate-names   scheme


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

Implementation

(define impc:ti:get-polyfunc-candidate-names
  (lambda (polyfunc-name)
    (let ((candidates (impc:ti:get-polyfunc-candidate-list polyfunc-name)))
      (and candidates
           (map (lambda (func-vector) (vector-ref func-vector 0)) candidates)))))


Back to Index