Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Not A Problem
-
1.2 Final
-
None
Description
I was not able to create an extension function that has a variable number of arguments.
I'd like to create an extension function that returns true if the first argument is equal to any of the other arguments.
For example:
ns:firstArgIsInList( node, 1, 2, 3, 4, 5 )
which would return true if node is equal to 1, 2, 3, 4 or 5.
Thanks.