Dean,

You're going to kick yourself. :-)
 
>    ($x eq 'T') && next if value_in_list( $u, @listA ); 

This means exactly:
 
    if (value_in_list($u, @listA))
    {
        ($x eq 'T') && next;
    }
 

Eric
_______________________________________________
ActivePerl mailing list
ActivePerl@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to