Difference between revisions of "ListXequY"

From Second Life Wiki
Jump to navigation Jump to search
m (examples should at least compile)
(Yep, examples should compile. And I couldn't see the point in the llList2CSV)
Line 16: Line 16:
<lsl>
<lsl>
integer ListXequY(list lx, list ly) {
integer ListXequY(list lx, list ly) {
     if (llList2CSV( ListXnotY(lx,ly) ) =="") return TRUE;
     return ( ListXnotY(lx, ly) == [] );
    else return FALSE;
}
}
</lsl>
</lsl>
Line 25: Line 24:


<lsl>
<lsl>
list l1 = ["a","b","c","d"];
list l1 = ["a","b","c", 1,2,3];
list l2 = ["a","1","b","2","c","3"];
list l2 = ["a",1,"b",3,"c",3];


integer ListXequY(list lx, list ly) {
integer ListXequY(list lx, list ly) {
     if (llList2CSV( ListXnotY(lx,ly) ) =="") return TRUE;
     return ( ListXnotY(lx, ly) == [] );
    else return FALSE;
}
}


Line 46: Line 44:
default{
default{
   state_entry() {
   state_entry() {
       llSay(0, "Are we the same lists? " + (string)ListXequY(l1,l2))
       llSay(0, "Are we the same lists? " + (string)ListXequY(l1,l2));
       //will say in this example: 0 , meaning No
       //will say in this example: 0 , meaning No
   }
   }

Revision as of 06:37, 21 April 2014

Function: integer ListXequY(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

<lsl> integer ListXequY(list lx, list ly) {

   return ( ListXnotY(lx, ly) == [] );

} </lsl>


Example:

<lsl> list l1 = ["a","b","c", 1,2,3]; list l2 = ["a",1,"b",3,"c",3];

integer ListXequY(list lx, list ly) {

   return ( ListXnotY(lx, ly) == [] );

}

list ListXnotY(list lx, list ly) {// return elements in X list that are not in Y list

   list lz = [];
   integer i = 0;
   integer n = llGetListLength(lx);
   for (; i < n; i++)
       if (llListFindList(ly,llList2List(lx,i,i)) == -1)
           lz += llList2List(lx,i,i);
   return lz;

}


default{

  state_entry() {
     llSay(0, "Are we the same lists? " + (string)ListXequY(l1,l2));
     //will say in this example: 0 , meaning No
  }

} </lsl>

Posted with the kind permission of Very Keynes, who originated this script June 2007 in the SL scripters forum http://forums-archive.secondlife.com/54/e4/194138/1.html