llListFindListNext

Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
This commit is contained in:
Vincent Sylvester
2025-03-31 13:23:43 +02:00
committed by UbitUmarov
parent d12418ed8f
commit 587b19c76b
3 changed files with 67 additions and 0 deletions

View File

@@ -1286,6 +1286,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_LSL_Functions.llListFindList(src, test);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_Integer llListFindListNext(LSL_List src, LSL_List test, LSL_Integer instance)
{
return m_LSL_Functions.llListFindListNext(src, test, instance);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_Integer llListFindStrided(LSL_List src, LSL_List test, LSL_Integer lstart, LSL_Integer lend, LSL_Integer lstride)
{