add LSL_Integer osListFindListNext(LSL_List src, LSL_List test, LSL_Integer lstart, LSL_Integer lend, LSL_Integer instance), like ll one but with search restricted to a substring. Untested, sorry

This commit is contained in:
UbitUmarov
2025-04-04 01:30:41 +01:00
parent 9a02b55bf2
commit bde18322eb
5 changed files with 110 additions and 103 deletions

View File

@@ -1819,5 +1819,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
return m_OSSL_Functions.osTemperature2sRGB(dtemp);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public LSL_Integer osListFindListNext(LSL_List src, LSL_List test, LSL_Integer start, LSL_Integer end, LSL_Integer instance)
{
return m_OSSL_Functions.osListFindListNext(src, test, start, end, instance);
}
}
}