xtmdoc-strip-arg-type-annotations   scheme


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

Implementation

(define xtmdoc-strip-arg-type-annotations
  (lambda (form)
    (if (or (symbol? form)
            (not (list? form)))
        form
        (map (lambda (arg)
               (string->symbol (car (regex:split (symbol->string arg) ":"))))
             form))))


Back to Index