Solved
index wherecontains
wherecontains(null, {"a", "", "b"}) returns 2
i need to get an index of non null values , e.g. in above case it should return {1,3}
wherecontains(null, {"a", "", "b"}) returns 2
i need to get an index of non null values , e.g. in above case it should return {1,3}
And without "abusing" (IMHO ;-)) foreach
where(
a!forEach(
items: {"a", "", "b"},
expression: a!isNotNullOrEmpty(fv!item)
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.