Hello,
Is there a way to list the args of a function without parsing the definition?
test:{[date;syms;time] ... }
can I somehow get a list back?
(date;syms;time)
Hello,
Is there a way to list the args of a function without parsing the definition?
test:{[date;syms;time] ... }
can I somehow get a list back?
(date;syms;time)
get or value on a function will help you here. It returns the params in its returned list
ahh I see, missed that, thank you.