hi,
from time to time i have been wondering if it would not be nice i i could do: foo[3,7,4,2]; and have that return an array ({ foo[3], foo[7], foo[4], foo[2] })
today i thought about this problem once more and i just had the revelation that i could do: foo[ ({ 3,7,4,2 })[*] ]; to produce the desired result.
to some of you this may be an old hat, but to me it was a pleasant surprize. pike never ceases to amaze me! thanks guys!
greetings, martin.