I have the following function:
func_name(p_1, p_2, p_3, ...)
Is there any way in the body of the function to query and get, for example:
a) the total number of the arguments/parameters of the current function
b) the type of them
Of course, I could modify the function as
func_name(n, ..., p_1, p_2, p_3, ...)
and include the info I require as arguments but it does not make me happy!
I would prefer to create a table with all functions' info (function name, function argument names and types) and query that when I have to.
Tia