Shinmera / trivial-arguments

Tiny CL library to retrieve the arguments list of a function.
zlib License
22 stars 6 forks source link

Support method lambda lists. #11

Closed aartaka closed 4 months ago

aartaka commented 4 months ago

This allows getting method lambda lists (these often have argument names quite different to these of the generic function and thus meaningful) with arglist.

Try it on:

(trivial-arguments:arglist (nth X (closer-mop:generic-function-methods #'print-object)))
Shinmera commented 4 months ago

Thanks!