impc:ir:genericfunc-stringify-generic-arg-strings   scheme


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

Implementation

(define impc:ir:genericfunc-stringify-generic-arg-strings
  (lambda (args)
    (string-join (map (lambda (a)
                        (if (null? a)
                            "_"
                            (let ((r (impc:ir:pptype a)))
                              (if (null? r)
                                  "_"
                                  r))))
                      args) ",")))


Back to Index