You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ix:=etable.NewIdxView(&MyTable)
nmcl:=MyTable.ColByName("Name")
ix.Filter(func(et*Table, rowint) bool {
// filter return value is for what to *keep* (=true), not exclude// here we keep any row with a name that contains the string "in"returnstrings.Contains(nmcl.StringVal1D(row), "in")
})