in reply to \ Operator in referencing

I'll think you'll find this is nothing more than operator precedence. The @list in parentheses is evaluated first and expands to a list. You then take a reference to that list which, as you have correctly stated, expands to a list of references.

Regards,

PN5