where

LUA

where

<lst>:where(predicate(item, pos)

Itera il contenuto della lista ritornando gli elementi che soddisfano il predicato in ingresso.

Esempio 207. Esempio where

local a = XTable(Orders)  :where(function(x, i) return x.ShipCountry == "USA" and x.CustomerID == "OLDWO" end)          
 :astable()
alert(a)