« Module:TableTools » : différence entre les versions
m 1 version importée |
test>Pppery Update from sandbox per request |
||
Ligne 460 : | Ligne 460 : | ||
-- inArray | -- inArray | ||
-- | -- | ||
-- Returns true if | -- Returns true if searchElement is a member of the array, and false otherwise. | ||
-- Equivalent to JavaScript array.includes(searchElement) or | |||
-- array.includes(searchElement, fromIndex), except fromIndex is 1 indexed | |||
------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ||
function p.inArray( | function p.inArray(array, searchElement, fromIndex) | ||
checkType("inArray", 1, | checkType("inArray", 1, array, "table") | ||
-- if | -- if searchElement is nil, error? | ||
for _, v in ipairs( | fromIndex = tonumber(fromIndex) | ||
if v == | if fromIndex then | ||
if (fromIndex < 0) then | |||
fromIndex = #array + fromIndex + 1 | |||
end | |||
if fromIndex < 1 then fromIndex = 1 end | |||
for _, v in ipairs({unpack(array, fromIndex)}) do | |||
if v == searchElement then | |||
return true | |||
end | |||
end | |||
else | |||
for _, v in pairs(array) do | |||
if v == searchElement then | |||
return true | |||
end | |||
end | end | ||
end | end |