Page 2 of 2

Re: introspection: current handler name?

Posted: Mon Jan 20, 2020 6:42 pm
by LCMark
The most efficient way to get the handler name is

Code: Select all

param(0)
- then

Code: Select all

param(1), param(2), ...
give you the values passed as arguments in that position (which is useful for doing variadic type stuff).