ListXequY
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Function: integer ListXnotY(list lx, list ly);
Answers the question: is list X identical to list Y?
Returns the number 1 if true, 0 if false
Note: requires also the function ListXnotY .
The opposite function is ListXneqY .
See also: Lists
integer ListXequY(list lx, list ly) { if (llList2CSV( ListXnotY(lx,ly) ) =="") return TRUE; else return FALSE; }
Example:
list l1 = ["a","b","c","d"]; list l2 = ["a","1","b","2","c","3"]; default{ state_entry() { llSay(0, "Are we the same lists? " + (string)ListXequY(l1,l2)) //will say in this example: 0 , meaning No } }

