Hi!. Is there any way to check elements from a li...
# strikt
a
Hi!. Is there any way to check elements from a list with index param? I'm using:
Copy code
get { items }.isNotNull().all {
   get { id }.isNotNull().contains("item-")
}
But I would do something like:
Copy code
get { items }.isNotNull().allIndexed { index ->
   get { id }.isNotNull().contains("item-$index")
}