removed useless _ folders
This commit is contained in:
3
List_Find_Last_Index/List_Find_Last_Index.sol
Normal file
3
List_Find_Last_Index/List_Find_Last_Index.sol
Normal file
@@ -0,0 +1,3 @@
|
||||
<Solution name="List_Find_Last_Index">
|
||||
<Project name="List_Find_Last_Index" path="List_Find_Last_Index\List_Find_Last_Index.prj" active="true"/>
|
||||
</Solution>
|
||||
@@ -0,0 +1,6 @@
|
||||
<Project name="List_Find_Last_Index" guid="D8395642-6C00-1014-B904-200204C60A89">
|
||||
<Object name="Object" guid="D8395736-6C00-1014-B904-200204C60A89">
|
||||
<Script name="List_Find_Last_Index_1.lsl" guid="D844E736-6C00-1014-B904-200204C60A89">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
@@ -0,0 +1,32 @@
|
||||
// :CATEGORY:Useful Subroutines
|
||||
// :NAME:List_Find_Last_Index
|
||||
// :AUTHOR:Void Singer
|
||||
// :CREATED:2010-02-01 19:28:04.393
|
||||
// :EDITED:2013-09-18 15:38:56
|
||||
// :ID:476
|
||||
// :NUM:643
|
||||
// :REV:1.0
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// List_Find_Last_Index
|
||||
// :CODE:
|
||||
integer uGetLstIdxRev( list vLstSrc, list vLstTst ){
|
||||
|
||||
integer vIdxFnd =
|
||||
|
||||
(vLstSrc != []) +
|
||||
|
||||
([] != vLstTst) +
|
||||
|
||||
([] != llParseString2List(
|
||||
|
||||
llList2String(
|
||||
|
||||
llParseStringKeepNulls(
|
||||
|
||||
llDumpList2String( vLstSrc, "\x95" ),
|
||||
|
||||
(list)llDumpList2String( vLstTst, "\x95" ),
|
||||
|
||||
[] ),
|
||||
|
||||
Reference in New Issue
Block a user