mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
add llListSortStrided and osListSortInPlaceStrided
This commit is contained in:
@@ -5997,6 +5997,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
src.SortInPlace(stride, ascending == 1);
|
||||
}
|
||||
|
||||
public void osListSortInPlaceStrided(LSL_List src, LSL_Integer stride, LSL_Integer stride_index, LSL_Integer ascending)
|
||||
{
|
||||
src.SortInPlace(stride, stride_index, ascending == 1);
|
||||
}
|
||||
|
||||
public LSL_List osGetParcelDetails(LSL_Key id, LSL_List param)
|
||||
{
|
||||
if (!UUID.TryParse(id, out UUID parcelID))
|
||||
|
||||
Reference in New Issue
Block a user