llListFindStrided
function ll.ListFindStrided(ListVariable: {any}, Find: {any}, Start: number, End: number, Stride: number): numberReturns the index of the first instance of Find in ListVariable. Returns -1 if not found.
Returns the position of the first instance of the Find list in the ListVariable after the start index and before the end index. Steps through ListVariable by stride. Returns -1 if not found.
Parameters
-
ListVariable({any}) -
Find({any}) -
Start(number) -
End(number) -
Stride(number)
Examples
Section titled “Examples”Add example usage here showing SLua/Luau syntax with ll.ListFindStrided().
Add additional notes, caveats, or tips specific to using this function in SLua/Luau.
See Also
Section titled “See Also”- Related functions can be linked here
- LSL equivalent: llListFindStrided