xtmdoc-scheme-function-handler   scheme


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

Implementation

(define xtmdoc-scheme-function-handler
  (lambda (name-sym)
    (list
     '(category . "scheme closure")
     (cons 'name (symbol->string name-sym))
     (cons 'args (xtmdoc-get-args-from-form (get-closure-code (eval name-sym))))
     (list 'type)
     (list 'docstring))))


Back to Index