ID:134395
 
I think it would come in handy if you can use operators in set src in.

Such as having
set src in oview(1)&&list
Well, I made a similar request not too long ago. Here's the reply Mr. Spuzz gave me:
[link]

Hiead
In response to Hiead
Heh, thanks. I knew I had made a post about this before but was too lazy to go look it up (I was tired yesterday =P). I was waiting until someone else went ahead and posted the same basic things I've said, but posting my old link works too. =)
Well, that's an invalid use of the && operator even if it worked there. oview() && list will just be the list value, since oview() itself is a list and therefore always true. I think you might be thinking of the & operator, but that doesn't work on lists. I thought of implementing it for them but it's way harder than it sounds.

Lummox JR
In response to Lummox JR
However, oview(1) + list would return a valid list. ;P