Garry's Mod Wiki

Garry's Mod Wiki

  any table.FindPrev( table tbl, any value )

Description

We advise against using this. It may be changed or removed in a future update. Instead, iterate your table with ipairs, storing the previous value and checking for the target. Non-numerically indexed tables are not ordered.

Returns the value positioned before the supplied value in a table. If it isn't found then the last element in the table is returned

Arguments

1 table tbl
Table to search
2 any value
Value to return element before

Returns

1 any
Found element

Example

Print the previous item the value "b" of the table

local tbl = {"a", "b", "c"} print(table.FindPrev(tbl, "b"))
Output: a in console

This site is a community mirror of the official Garry's Mod wiki.. This site is not maintained by Facepunch Studios.

Page content is automatically updated twice a day. Edits and history are not available.

Last Parsed: Loading...